-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (24 loc) · 898 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
import os
import re
import ast
with open(os.path.join('nwkit', '__init__.py')) as f:
match = re.search(r'__version__\s+=\s+(.*)', f.read())
version = str(ast.literal_eval(match.group(1)))
setup(
name = 'nwkit',
version = version,
description = 'Tools for processing newick trees',
license = "BSD 3-clause License",
author = "Kenji Fukushima",
author_email = '[email protected]',
url = 'https://github.com/kfuku52/nwkit.git',
keywords = 'phylogenetics',
packages = find_packages(),
install_requires = ['ete3','biopython',],
scripts = ['nwkit/nwkit',],
include_package_data = True,
package_data = {
'':['data_tree/*.nwk',],
}
)