forked from bbengfort/brisera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (35 loc) · 1.2 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
36
37
38
39
40
41
42
43
#!/usr/bin/env python
try:
from setuptools import setup
from setuptools import find_packages
except ImportError:
raise ImportError("Could not import \"setuptools\". Please install the setuptools package.")
packages = find_packages(where=".", exclude=('tests', 'apps', 'docs', 'fixtures', 'conf', 'venv'))
requires = []
with open('requirements.txt', 'r') as reqfile:
for line in reqfile:
requires.append(line.strip())
classifiers = (
'Development Status :: 4 - Beta',
'Environment :: Console',
'Enivronment :: No Input/Output (Daemon)',
'Environment :: MacOS X',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
)
config = {
"name": "brisera",
"version": "1.0",
"description": "A Python implementation of a distributed seed and reduce algorithm with Spark",
"author": "Benjamin Bengfort",
"author_email": "[email protected]",
"packages": packages,
"install_requires": requires,
"classifiers": classifiers,
"zip_safe": False,
"scripts": ["apps/convert_fasta.py"],
}
setup(**config)