-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
45 lines (41 loc) · 1.46 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
# http://bugs.python.org/issue15881#msg170215
import glob
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
subpackages = [x.replace('/', '.') for x in glob.glob('tripaille/commands/*') if not x.endswith('.py') and not x.endswith('.pyc')]
subpackages += [x.replace('/', '.') for x in glob.glob('tripal/*') if not x.endswith('.py') and not x.endswith('.pyc')]
with open('requirements.txt') as f:
requires = f.read().splitlines()
setup(
name="tripal",
version='3.2.1',
description="Tripal library",
author="Anthony Bretaudeau",
author_email="anthony.bretaudeau@inra.fr",
url="https://github.com/galaxy-genome-annotation/python-tripal",
install_requires=requires,
packages=[
'tripal',
'tripaille',
'tripaille.commands',
] + subpackages,
license='MIT',
platforms="Posix; MacOS X; Windows",
entry_points='''
[console_scripts]
tripaille=tripaille.cli:tripaille
''',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
])