-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
29 lines (27 loc) · 901 Bytes
/
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
# http://bugs.python.org/issue15881#msg170215
from setuptools import find_packages, setup
with open('requirements.txt') as f:
requires = f.read().splitlines()
setup(
name="chado",
version='2.3.9',
description="Chado library",
author="Anthony Bretaudeau",
author_email="anthony.bretaudeau@inrae.fr",
url="https://github.com/galaxy-genome-annotation/python-chado",
install_requires=requires,
packages=find_packages(),
license='MIT',
platforms="Posix; MacOS X; Windows",
entry_points='''
[console_scripts]
chakin=chakin.cli:chakin
''',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3.8",
])