-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
40 lines (37 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
36
37
38
39
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import os.path
SETUP_DIR = os.path.dirname(__file__)
README = os.path.join(SETUP_DIR, 'README.md')
readme = open(README).read()
setup(
name='regate',
version='0.10.0',
description='Registration of Galaxy Tools in Elixir',
long_description=readme,
keywords=['GalaxyProject'],
author='Olivia Doppelt-Azeroual and Fabien Mareuil',
author_email='[email protected] and [email protected]',
url='https://github.com/bioinfo-center-pasteur-fr/ReGaTE',
packages=['regate'],
install_requires=[
'ruamel.yaml',
'html5lib==1.0b8',
'rdflib',
'cheetah',
'requests',
'configparser',
'bioblend',
'lxml'
],
license="GPLv2",
entry_points={
'console_scripts': ['regate=regate.regate:run',
'remag=regate.remag:run'],
},
tests_require=['nose', 'nose_parameterized'],
test_suite='nose.collector',
include_package_data=True,
zip_safe=False
)