-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (34 loc) · 1.21 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
35
36
37
38
import setuptools
#see https://packaging.python.org/tutorials/packaging-projects/
#see https://packaging.python.org/guides/distributing-packages-using-setuptools/
with open("README.md", 'r') as fh:
long_description = fh.read()
with open("requirements.txt", 'r') as fh:
install_requires = fh.read().split()
setuptools.setup(
name="kbbq",
version="0.0.0",
author="Adam Orr",
author_email="ajorr1@asu.edu",
description="A library and command line tool for reference-free base quality score recalibration.",
long_description = long_description,
long_description_content_type="text/markdown",
url="https://github.com/adamjorr/kbbq",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics"
],
python_requires='>=3',
install_requires=install_requires,
entry_points={
'console_scripts': [
'kbbq=kbbq.main:main'
]
}
)