-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (47 loc) · 1.71 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
44
45
46
47
48
49
50
51
52
53
import os
import re
from setuptools import setup
NAME = 'isb_firm'
PACKAGES = ['firm']
DESCRIPTION = 'Framework for inference of regulation by miRNAs'
LICENSE = 'LGPL V3'
URI = 'https://github.com/baliga-lab/firm2'
AUTHOR = 'Baliga Lab, Institute for Systems Biology'
VERSION = '1.0.2'
KEYWORDS = ['miRvestigator', 'firm']
# See trove classifiers
# https://testpypi.python.org/pypi?%3Aaction=list_classifiers
CLASSIFIERS = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries :: Python Modules"
]
PACKAGE_DATA = {
'firm': ['common/*', 'FreqFiles/*',
'TargetPredictionDatabases/PITA/*',
'TargetPredictionDatabases/TargetScan/*']
}
if __name__ == '__main__':
setup(name=NAME, description=DESCRIPTION,
license=LICENSE,
url=URI,
version=VERSION,
author=AUTHOR,
author_email='wwu@systemsbiology.net',
maintainer=AUTHOR,
maintainer_email='wwu@systemsbiology.net',
keywords=KEYWORDS,
packages=PACKAGES,
zip_safe=False,
classifiers=CLASSIFIERS,
include_package_data=True, package_data=PACKAGE_DATA,
scripts=['bin/firm', 'bin/firm-convertminer'])