-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
47 lines (36 loc) · 1.38 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
import os
import glob
tRNASeqTools_version='1.0'
requirements = [req.strip() for req in open('requirements.txt', 'rU').readlines() if not req.startswith('#')]
from setuptools import setup, find_packages
if os.environ.get('USER','') == 'vagrant':
del os.link
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
setup(
name = "tRNASeqTools",
version = tRNASeqTools_version,
scripts = [script for script in glob.glob('bin/*')],
include_package_data = True,
packages = find_packages(),
install_requires = requirements,
author = "Meren Lab",
author_email = "[email protected]",
description = "Set of tools for tRNA-seq data analysis",
license = "GPLv3+",
keywords = "tRNA tRNA-seq bioinformatics",
url = "https://merenlab.org/",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
],
)