-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
30 lines (28 loc) · 1.19 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
from setuptools import setup, find_packages
import logdate
from os import walk, listdir
from os.path import join,normpath,isfile
param = {
'name': logdate.PROGRAM_NAME,
'version': logdate.PROGRAM_VERSION,
'description': logdate.PROGRAM_DESCRIPTION,
'author': logdate.PROGRAM_AUTHOR,
'license': logdate.PROGRAM_LICENSE,
'packages': find_packages(),
'include_package_data': True,
'scripts' : ['launch_wLogDate.py'],
'zip_safe': True,
'install_requires': ['dendropy>=4.3.0','scipy>=1.3.1','bitsets','numpy>=1.18.5'],
'keywords': 'Phylogenetics Evolution Biology',
'long_description': """A Python implementation of the wLogDate algorithm""",
'classifiers': ["Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
}
setup(**param)