-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (26 loc) · 1003 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pycoistats",
version="1.4.3",
author="Camiel Doorenweerd",
author_email="[email protected]",
description="A python package to calculate statistics on haploid DNA sequence data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cdoorenweerd/PyCOIStats",
packages=setuptools.find_packages(include=['pycoistats', 'pycoistats.*']),
scripts=['pycoistats/aln_filter.py',
'pycoistats/aln_hapcounter.py',
'pycoistats/aln_pdistancer.py',
'pycoistats/aln_renamer.py',
'pycoistats/aln_splitspecies.py',
'pycoistats/aln_summary.py',
'pycoistats/basefunctions.py'],
classifiers=(
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: GPL-3.0 License",
),
)