-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 1.11 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
from setuptools import setup, find_packages
setup(
name="Enhscr",
use_scm_version=True,
setup_requires=['setuptools_scm'],
author="Wei Tian",
author_email="[email protected]",
description="Enhscr",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/jksr/EnhScr',
license='MIT',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
python_requires='>=3.6',
packages=find_packages(exclude=('doc',)),
include_package_data=True,
package_data={
'': ['*.txt', '*.tsv', '*.csv', '*.fa', '*Snakefile', '*ipynb']
},
#install_requires=['pandas>=1.0',
# 'numpy',
# 'seaborn==0.10',
# 'matplotlib',
# 'papermill',
# 'dnaio',
# 'pysam'],
entry_points={
'console_scripts': ['enhscr=EnhScr.__main__:main',
'enhscr-internal=EnhScr._enhscr_internal_cli_:internal_main'],
}
)