-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·57 lines (51 loc) · 1.79 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
50
51
52
53
54
55
56
57
#!/usr/bin/env python
import codecs
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
from treemaker.treemaker import VERSION
DESCR = """
A python tool for generating a Newick formatted tree from a
list of classifications
""".replace("\n", "").strip().lstrip()
# Get the long description from the relevant file
with codecs.open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='treemaker',
version=VERSION,
description=DESCR,
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/SimonGreenhill/treemaker',
author='Simon J. Greenhill',
author_email='[email protected]',
license='BSD',
zip_safe=True,
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='phylogenetics newick taxonomy',
packages=find_packages(),
package_dir={},
install_requires=[],
entry_points={
'console_scripts': [
'treemaker = treemaker:main'
],
},
test_suite="treemaker.test_treemaker",
)