-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.12 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.12 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
# 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',
license="GNU General Public License v3.0",
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',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
zip_safe=False,
author='Gregor Rot',
#scripts=["pybio/pybio"],
entry_points={
'console_scripts': ['pybio=pybio:main']
},
author_email='gregor.rot@gmail.com',
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"],
)