-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
49 lines (46 loc) · 1.25 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
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/python3.5
try:
from setuptools import setup
from setuptools import Command
from setuptools import Extension
except ImportError:
sys.exit(
"We need the Python library setuptools to be installed. "
"Try runnning: python -m ensurepip"
)
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(
name='Tree2gd',
version='1.0.38',
packages=['tree2gd'],
license='GPL',
long_description_content_type='text/x-rst',
long_description=long_description,
author='Duoyuan chen',
author_email='[email protected]',
description='Tree2gd',
py_modules=['tree2gd_main'],
include_package_data=True,
url='https://github.com/Dee-chen/Tree2gd',
install_requires=[
'configparser',
'matplotlib',
'argparse',
'coloredlogs',
'pyecharts',
'bio',
'jcvi'
],
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
],
python_requires='>=3.6',
entry_points='''
[console_scripts]
Tree2gd=tree2gd_main:main
Tree2gd_test=tree2gd_main:test
''',
)