-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 1 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
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.readlines()
long_description = """Functional profiling tool for 16S amplicon-based sequence
data. Based on SecondGenome's Piphillin webserver, since discontinued."""
setup(
name = 'pyphillin',
version = '1.0.0',
author = 'Daniel McSkimming',
author_email = '[email protected]',
url = 'https://github.com/dmcskim/pyphillin',
description = 'Functional profiling tool for 16S amplicon-based sequence\
data.',
long_description = long_description,
long_description_content_type = 'text/markdown',
license = 'GPLv3',
packages = find_packages(),
entry_points = {
'console_scripts' : [ 'pyphillin = pyphillin.pyphillin:main' ]
},
classifiers = ("Programming Language :: Python :: 3",
"Operating System :: OS Independent",),
install_requires = requirements,
include_package_data = True,
package_data = {
'' : ['data/*']
},
)