-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (53 loc) · 1.68 KB
/
setup.py
File metadata and controls
59 lines (53 loc) · 1.68 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
55
56
57
58
59
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sys
import warnings
VERSION = 'undefined'
install_requires = ['pyprind', 'requests>=2.0.0', 'urllib3>=1.26.0']
extra = {}
with open('solvebio/version.py') as f:
for row in f.readlines():
if row.startswith('VERSION'):
exec(row)
# solvebio-recipes requires additional packages
recipes_requires = [
'pyyaml==5.3.1',
'click==7.1.2',
'ruamel.yaml==0.16.12'
]
extras_requires = {
"recipes": recipes_requires
}
with open('README.md') as f:
long_description = f.read()
setup(
name='solvebio',
version=VERSION,
description='The SolveBio Python client (DEPRECATED)',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.8',
author='Solve, Inc.',
author_email='contact@solvebio.com',
url='https://github.com/solvebio/solvebio-python',
packages=find_packages(),
package_dir={'solvebio': 'solvebio', 'recipes': 'recipes'},
test_suite='solvebio.test',
include_package_data=True,
install_requires=install_requires,
platforms='any',
extras_require=extras_requires,
entry_points={
'console_scripts': ['solvebio = solvebio.cli.main:main',
'solvebio-recipes = recipes.sync_recipes:sync_recipes']
},
classifiers=[
'Development Status :: 7 - Inactive',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
**extra
)