forked from ialbert/bio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 916 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
33
34
35
36
37
import biorun
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="bio",
version=biorun.VERSION,
author="Istvan Albert",
author_email="[email protected]",
description="bio",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ialbert/bio",
packages=find_packages(include=["biorun", "biorun.*"]),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'biopython >= 1.78',
'requests',
'pytest'
],
entry_points={
'console_scripts': [
'bio=biorun.__main__:run',
'comm.py=biorun.methods.comm:run',
],
},
python_requires='>=3.6',
)