-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
41 lines (36 loc) · 1011 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
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
"""
pip install -e . --no-deps
"""
import re
from setuptools import setup, find_packages
# get version from __init__.py
INIT_FILE = "phyloshape/__init__.py"
CUR_VERSION = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
open(INIT_FILE, "r").read(),
re.M).group(1)
# run setup
setup(
name="phyloshape",
version=CUR_VERSION,
url="https://github.com/Kinggerm/phyloshape",
author="JianJun Jin; Yue Yang; Deren Eaton",
author_email="[email protected]",
description="ancestral shape reconstruction toolkit",
long_description=open('README.md').read(),
# long_description_content_type='text/x-rst',
packages=find_packages(),
install_requires=[
"numpy",
"scipy",
"symengine",
"loguru",
"plyfile",
"toytree", # temporarily
],
entry_points={},
license='GPLv3',
classifiers=[
'Programming Language :: Python :: 3',
],
)