-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
65 lines (59 loc) · 2 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
def _read_file(name):
with open(os.path.join(here, name)) as fp:
return fp.read()
README = _read_file('README.rst')
CHANGES = _read_file('changelog.rst')
INSTALL_REQUIRES = _read_file('requirements.txt').splitlines()
setup(
name='azanium',
version='0.7.17.dev0',
url='http://www.wormmbase.org/',
author='Matt Russell, EMBL-EBI',
author_email='[email protected]',
description='WormBase Database Migration Tools',
long_description="""\
Provides command line interfaces to run the database migration steps
for converting the WormBase ACeDB database to Datomic.
""",
license='MIT',
keywords='WormBase, ACeDB, C. Elegans, Model Organisms',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
install_requires=INSTALL_REQUIRES,
entry_points={
'console_scripts': [
'azanium=azanium.__main__:cli',
],
'zest.releaser.releaser.middle': [
'build_github_assets=azanium.hooks:build_release_assets'
],
'zest.releaser.releaser.after': [
'publish_azanium_docs_and_assets=azanium.hooks:deploy_release'
]
},
zip_safe=False,
classifiers=[
'Development Status :: 1 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules :: Tools',
],
extras_require={
'dev': [
'Sphinx==1.4.3',
'ghp-import==0.4.1',
'sphinx_rtd_theme==0.1.9',
'zest.releaser[recommended]==6.6.4',
]
}
)