-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·43 lines (41 loc) · 1.3 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
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup, find_packages
setup(
name='phyltr',
version='0.5.0.dev0',
description='Unix filters for manipulating and analysing (samples of) phylogenetic trees represented in the Newick format',
author='Luke Maurits',
author_email='[email protected]',
url='https://github.com/lmaurits/phyltr',
license="GPL3",
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
entry_points = {
'console_scripts': ['phyltr=phyltr.__main__:run_command'],
},
install_requires=[
'ete3',
],
extras_require={
'dev': ['flake8', 'wheel', 'twine'],
'test': [
'mock',
'pytest>=3.6',
'pytest-mock',
'pytest-cov',
'coverage>=4.2',
],
},
)