-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
20 lines (18 loc) · 839 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
from setuptools import find_packages
with open("README.md", "r", encoding='utf-8') as f:
long_description = f.read()
setup(name='genetorch', # 包名
version='1.3.6', # 版本号
description='To deal with large amount of WGS data in suppressor screening and to predict suppressor gene',
long_description=long_description,
long_description_content_type="text/markdown",
author='Guo_Zhengyang',
author_email='guozhengyang980525@yahoo.co.jp',
install_requires=['pandas', 'matplotlib', 'requests', 'numpy', 'scipy', 'intermine','plotly'],
license='MIT License',
packages=find_packages(),
platforms=["all"],
classifiers=['Programming Language :: Python :: 3', 'Development Status :: 4 - Beta', ],
include_package_data=True
)