-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 916 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
def readme():
with open('README.md') as readme_file:
return readme_file.read()
configuration = {
'name' : 'BENPPy',
'version': '2.7.18',
'description' : 'BayesENproteomics in Python',
'long_description' : readme(),
'classifiers' : [
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Operating System :: OS Independent',
],
'keywords' : 'proteomics PTMs MCMC',
'url' : 'https://github.com/VenkMallikarjun/BENPPy',
'author' : 'Venkatesh Mallikarjun',
'author_email' : 'vjmallikarjun@gmail.com',
'license' : 'MIT License',
'packages' : ['BENPPy'],
'install_requires': ['numpy','scipy','scikit-learn','matplotlib','pandas']
}
setuptools.setup(**configuration)