forked from onecodex/onecodex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·54 lines (45 loc) · 1.51 KB
/
setup.py
File metadata and controls
executable file
·54 lines (45 loc) · 1.51 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
"""
``onecodex``
------------
``onecodex`` provides a command line client and Python library for
interacting with the One Codex API.
Links
`````
* `One Codex: <https://www.onecodex.com/>`
* `API Docs: <http://docs.onecodex.com/>`
"""
from setuptools import setup, find_packages
with open('onecodex/version.py') as import_file:
exec(import_file.read())
setup(
name='onecodex',
version=__version__, # noqa
packages=find_packages(exclude=['*test*']),
install_requires=['potion-client==2.4.2', 'requests>=2.9', 'click>=6.6',
'requests_toolbelt==0.7.0', 'python-dateutil>=2.5.3',
'six>=1.10.0', 'boto3>=1.4.2'],
include_package_data=True,
zip_safe=False,
extras_require={
'all': ['numpy>=1.11.0', 'pandas>=0.18.1', 'matplotlib>1.5.1', 'networkx>=1.11']
},
dependency_links=[],
author='Kyle McChesney & Nick Greenfield & Roderick Bovee',
author_email='opensource@onecodex.com',
long_description=__doc__,
license='MIT License',
keywords='One Codex API Client',
url='https://github.com/onecodex/onecodex',
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP',
],
entry_points={
'console_scripts': ['onecodex = onecodex.cli:onecodex']
},
test_suite='tests'
)