-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
27 lines (26 loc) · 1 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
# http://bugs.python.org/issue15881#msg170215
from setuptools import find_packages, setup
setup(
name="biomaj2galaxy",
version='2.2.0',
description="Command-line utility to assist in interconnecting BioMAJ (https://biomaj.genouest.org/) with Galaxy (http://galaxyproject.org/).",
author="Anthony Bretaudeau",
author_email="[email protected]",
url="https://github.com/genouest/biomaj2galaxy",
install_requires=['future', 'bioblend', 'click'],
packages=find_packages(),
license='MIT',
platforms="Posix; MacOS X; Windows",
entry_points='''
[console_scripts]
biomaj2galaxy=biomaj2galaxy.cli:biomaj2galaxy
''',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
])