-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (31 loc) · 1 KB
/
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
# pybio, https://github.com/grexor/pybio
from setuptools import setup
from setuptools import find_packages
with open("README.md", "r") as fh:
long_desc = fh.read()
long_desc = "\n".join(long_desc.split("\n")[1:])
setup(
name='pybio',
version = open("pybio/version", "rt").readlines()[0].replace("\n", "").replace("\r", ""),
packages=find_packages(),
description='pybio genomics',
long_description = long_desc,
long_description_content_type = "text/markdown",
classifiers=[
'Programming Language :: Python :: 3',
],
zip_safe=False,
author='Gregor Rot',
#scripts=["pybio/pybio"],
entry_points={
'console_scripts': ['pybio=pybio:main']
},
author_email='[email protected]',
url='https://github.com/grexor/pybio',
keywords=['pybio', 'bioinformatics'],
include_package_data=True,
package_data={
'pybio': ['pybio.config.example', 'version'],
},
install_requires=["pysam", "numpy", "psutil", "bs4", "requests"],
)