-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 1.27 KB
/
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
29
#!/usr/bin/env python
'''
setup.py file for aa_stats
'''
from setuptools import setup, find_packages
setup(
name = 'pyteomics-utils',
version = '0.0.5',
description = '''Simple but handy CLI tools for everyday data analysis tasks.''',
long_description = (''.join(open('README.md').readlines())),
author = 'Lev Levitsky',
author_email = '[email protected]',
install_requires = ['pyteomics'],
extras_require = {'XML': ['lxml', 'numpy']},
classifiers = ['Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Topic :: Education',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries'],
license = 'License :: OSI Approved :: Apache Software License',
packages = find_packages(),
package_data = {},
entry_points = {'console_scripts': ['pyteomics=pyteomics_utils.main:main']}
)