-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (34 loc) · 1.3 KB
/
setup.py
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
29
30
31
32
33
34
35
36
from setuptools import setup, find_packages
from esgissue.constants import VERSION_NUMBER
setup(name='esgissue-client',
version=VERSION_NUMBER,
description='Local client to create, update, close and retrieve ESGF issues',
author='Atef Ben Nasser',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: MIT License',
],
url='https://github.com/ES-DOC/esdoc-errata-client',
packages=find_packages(),
include_package_data=True,
install_requires=['requests',
'jsonschema',
'simplejson',
'jsonschema',
'argparse',
'pyDes',
'pbkdf2',
'pytest'],
platforms=['Unix'],
zip_safe=False,
entry_points={'console_scripts': ['esgissue=esgissue.main:run']},
test_suite='esgissue.tests.errata_client_test',
tests_require=['pytest']
)