-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 843 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import face
with open('requirements.txt', 'r') as f:
INSTALL_REQUIRES = f.readlines()
with open('requirements-dev.txt', 'r') as f:
TESTS_REQUIRES = f.readlines()
setup(
name='FACe_lib',
description='FACe interface to simplify the interaction with their webservices',
long_description='FACe interface to simplify the interaction with their webservices',
version=face.__version__,
url='http://www.gisce.net',
author='GISCE-TI, S.L.',
author_email='devel@gisce.net',
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRES,
license='GNU GPLv3',
provides=['FACe_lib'],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
]
)