This repository has been archived by the owner on Jul 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
52 lines (45 loc) · 1.74 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
#!/usr/bin/env python
# ----------------------------------------------------------------------------
# Copyright (c) 2013--, IAB development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
# ----------------------------------------------------------------------------
from setuptools import find_packages, setup
from glob import glob
__version__ = "0.0.0-dev"
classes = """
Development Status :: 1 - Planning
License :: OSI Approved :: BSD License
Topic :: Software Development :: Libraries
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Operating System :: Unix
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
"""
classifiers = [s.strip() for s in classes.split('\n') if s]
description = ('Build script for An Introduction to Applied Bioinformatics.')
with open('README.rst') as f:
long_description = f.read()
setup(name='build-iab',
version=__version__,
license='BSD',
description=description,
long_description=long_description,
author="IAB development team",
author_email="[email protected]",
maintainer="IAB development team",
maintainer_email="[email protected]",
url='http://readIAB.org',
test_suite='nose.collector',
packages=find_packages(),
scripts=glob("scripts/*"),
install_requires=['ipymd', 'PyYAML', 'CommonMark < 0.6.0', 'click', 'jupyter',
'six', 'runipy', 'boto', 'markdown2'],
extras_require={'test': ["nose >= 0.10.1", "pep8", "flake8"]},
classifiers=classifiers,
)