-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (35 loc) · 1.41 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
#!/usr/bin/env python
#
# -----------------------------------------------------------------------------
# Copyright (C) 2015 Daniel Standage <daniel.standage@gmail.com>
#
# This file is part of tag (http://github.com/standage/tag) and is licensed
# under the BSD 3-clause license: see LICENSE.
# -----------------------------------------------------------------------------
from setuptools import setup
import glob
import versioneer
d = 'Genome annotation data analysis and management implemented in pure Python'
setup(name='tag',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description=d,
url='http://tag.readthedocs.io',
author='Daniel Standage',
author_email='daniel.standage@gmail.com',
license='BSD-3',
packages=['tag', 'tag.cli', 'tag.tests'],
package_data={'tag': ['tag/tests/data/*']},
include_package_data=True,
entry_points={'console_scripts': ['tag = tag.__main__:main']},
install_requires=['intervaltree>=3.0', 'networkx>=2.0'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
zip_safe=True)