-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 993 Bytes
/
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
from setuptools import setup, find_packages
import versioneer
setup_kwargs = {"include_package_data": True, "package_data": {"": ["MANIFEST.in"]}}
setup(
name="pyMEGA",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Cankun Wang",
author_email="[email protected]",
license="MIT",
description="MEGA is a deep learning package for identifying cancer-associated tissue-resident microbes",
long_description="MEGA is a deep learning package for identifying cancer-associated tissue-resident microbes",
long_description_content_type="text/markdown",
url="https://github.com/OSU-BMBL/MEGA",
packages=find_packages(),
python_requires=">=3.7",
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points="""
[console_scripts]
MEGA=MEGA.cli:main
""",
**setup_kwargs
)