-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
31 lines (29 loc) · 1012 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
27
28
29
30
31
#!/usr/bin/env python
from setuptools import setup
setup(name='Physcraper',
version='1.0.1',
description='Physcraper',
author='Emily Jane McTavish',
author_email='ejmctavish@gmail.com',
packages=['physcraper'],
scripts=['bin/physcraper_run.py',
'bin/tree_comparison.py',
'bin/find_trees.py',
'bin/multi_loci.py'],
long_description=(open('README.md').read()),
url=("https://github.com/McTavishLab/physcraper"),
include_package_data=True,
install_requires=['argparse',
'biopython==1.76',
'configparser',
'DendroPy',
'DateTime',
'opentree',
'pandas',
'requests',
'sh',
'urllib3>=1.23',
'nexson',
'numpy',
'wget']
)