-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1.07 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
30
31
32
33
34
35
import os
import re
from setuptools import setup, find_packages
_version_re = re.compile(r'__version__\s+=\s+(.*)') # from Armin Ronacher
with open('bcmproteomics/__init__.py', 'r') as f:
version = _version_re.search(f.read()).group(1).strip("'")
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='bcmproteomics',
version=version,
author='Alex Saltzman',
author_email='[email protected]',
description='A library for conveniently grabbing data from BCM_Proteomics iSPEC',
license='MIT',
url='https://github.com/asalt/bcmproteomics',
long_description = read('README.md'),
packages=find_packages(),
# install_requires=['pyodbc'],
keywords=['bioinformatics', 'data wrangling'],
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
package_data={
'bcmproteomics': ['training_data/*.txt'],
},
)