-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
43 lines (40 loc) · 1.48 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
import os
import sys
from setuptools import setup
version_py = os.path.join(os.path.dirname(__file__), 'trackhub', 'version.py')
version = open(version_py).read().strip().split('=')[-1].replace('"','')
long_description = """
Create and manage UCSC track hubs from Python
"""
setup(
name="trackhub",
version=version,
install_requires=[i.strip() for i in open('requirements.txt') if not i.startswith('#')],
packages=['trackhub',
'trackhub.test',
'trackhub.test.data',
],
author="Ryan Dale",
description=long_description,
long_description=long_description,
url="http://github.com/daler/trackhub",
include_package_data=True,
package_data = {'trackhub':["test/data/*"]},
package_dir = {"trackhub": "trackhub"},
scripts=["trackhub/trackhub_from_excel"],
license = 'MIT',
author_email="[email protected]",
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)