forked from solvebio/solvebio-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1020 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
VERSION = 'undefined'
for row in open('solvebio/version.py').readlines():
if row.startswith('VERSION'):
exec(row)
setup(
name='solvebio',
version=VERSION,
description='The SolveBio Python client',
long_description=open('README.txt').read(),
author='Solve, Inc.',
author_email='[email protected]',
url='https://github.com/solvebio/solvebio-python',
packages=find_packages(),
package_dir={"solvebio": "solvebio"},
#package_data={"solvebio": []},
install_requires=['requests>=2.0.0'],
platforms='any',
entry_points={
'console_scripts': ['solvebio = solvebio.cli.main:main']
},
classifiers=[
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
)