forked from uweschmitt/pyprophet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (42 loc) · 1.43 KB
/
setup.py
File metadata and controls
47 lines (42 loc) · 1.43 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
from distutils.extension import Extension
import numpy
version = (0, 13, 3)
ext_modules = [Extension("pyprophet._optimized", ["pyprophet/_optimized.c"])]
setup(name='pyprophet',
version="%d.%d.%d" % version,
author="Uwe Schmitt",
author_email="rocksportrocker@gmail.com",
description="Python reimplementation of mProphet peak scoring",
license="BSD",
url="http://github.com/uweschmitt/pyprophet",
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
include_dirs = [numpy.get_include()],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
],
zip_safe=False,
install_requires=[
"numpy >= 1.7.0",
"pandas >= 0.13",
"scipy >= 0.9.0",
"numexpr >= 2.1",
"scikit-learn >= 0.13",
"matplotlib",
],
test_suite="nose.collector",
tests_require="nose",
entry_points={
'console_scripts': [
"pyprophet=pyprophet.main:main",
]
},
ext_modules=ext_modules,
)