forked from tdhock/PeakError
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.03 KB
/
Copy pathsetup.py
File metadata and controls
31 lines (29 loc) · 1.03 KB
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
import setuptools
import numpy
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="PeakError",
version="0.0.4",
author="Tristan Miller",
author_email="Tristan.Miller@nau.edu",
description="A Python binding for PeakError",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/deltarod/PeakError/",
install_requires=['numpy', 'pandas'],
packages=['PeakError'],
extras_require={
'test': ['pytest']
},
ext_modules=[setuptools.Extension('PeakErrorInterface',
['src/interface.c', 'src/PeakError.c'],
include_dirs=[numpy.get_include()])],
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: C",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
python_requires='>=3.6',
)