This repository was archived by the owner on Oct 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (36 loc) · 1.44 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
37
from setuptools import find_packages, setup
setup(name='python-genomespaceclient',
version="1.2.0",
description='Python bindings and commandline client to the GenomeSpace'
' API',
author='GVL Project',
author_email='[email protected]',
url='http://python-genomespaceclient.readthedocs.org/',
install_requires=['cloudbridge>=2.0.0', 'requests'],
extras_require={
'dev': ['tox', 'sphinx', 'flake8', 'flake8-import-order']
},
packages=find_packages(),
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'],
entry_points={
'console_scripts': [
'genomespace = genomespaceclient:main'
]
},
test_suite="test"
)