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
39 lines (32 loc) · 792 Bytes
/
setup.py
File metadata and controls
39 lines (32 loc) · 792 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
29
30
31
32
33
34
35
36
37
38
39
"""
``onecodex``
------------
``onecodex`` provides a command line client for interaction with the
One Codex API.
Links
`````
* `One Codex: <https://www.onecodex.com/>`
* `API Docs: <http://docs.onecodex.com/>`
"""
from setuptools import setup
setup(
name='onecodex',
version='0.0.7',
url='https://www.onecodex.com/',
license='MIT',
author='Reference Genomics, Inc.',
author_email='help@onecodex.com',
description='One Codex Command Line Client',
long_description=__doc__,
packages=['onecodex'],
zip_safe=True,
platforms='any',
install_requires=[
'requests>=2.3.0',
'requests-toolbelt>=0.3.1'
],
test_suite='nose.collector',
entry_points={
'console_scripts': ['onecodex = onecodex.cli:main']
},
)