-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 1.03 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
import setuptools
# with open("README.md", 'r') as fd:
# long_description = fd.read()
# python setup.py sdist bdist_wheel
# twine upload dist/* && rm -rf build dist *.egg-info
setuptools.setup(
name="tcga",
version="0.0.22",
author="RA",
author_email="[email protected]",
keywords="computational biology bioinformatics genetics",
description="Computational biology & bioinformatics utils",
long_description="Computational biology & bioinformatics utils. Please visit the [github page](https://github.com/numpde/tcga).",
long_description_content_type="text/markdown",
url="https://github.com/numpde/tcga",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[''],
# Required for includes in MANIFEST.in
include_package_data=True,
test_suite="nose.collector",
tests_require=["nose"],
)