-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (25 loc) · 901 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
from setuptools import setup, find_packages
setup(name='phylotastic_services',
version='0.2',
description='Python package for phylotastic services',
long_description='Python package for phylotastic services',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Bioinformatics :: Phylogenetic analysis',
],
keywords='phylotastic treeoflife webservices',
url='https://github.com/phylotastic/phylo_webservices',
author='Abu Saleh Md Tayeen',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=[
'ete3>=3.0.0b35',
'dendropy',
'beautifulsoup4',
'requests'
],
include_package_data=False,
zip_safe=False)