-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 870 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (28 loc) · 870 Bytes
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pairsnp",
version="0.0.7",
author="Gerry Tonkin-Hill",
author_email="g.tonkinhill@gmail.com",
description="A simple package for calculating pairwise SNP distances",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gtonkinhill/pairsnp/",
install_requires=[
'numpy',
'scipy'
],
entry_points = {
'console_scripts': ['pairsnp=pairsnp.pairsnp:main'],
},
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
test_suite='nose.collector',
tests_require=['nose'],
)