-
Notifications
You must be signed in to change notification settings - Fork 78
/
setup.py
37 lines (35 loc) · 1.43 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
import os
import sys
from setuptools import setup
version_py = os.path.join(os.path.dirname(__file__), 'gffutils', 'version.py')
version = open(version_py).read().strip().split('=')[-1].replace('"', '')
requirements = open(os.path.join(os.path.dirname(__file__), 'requirements.txt')).readlines()
setup(
name='gffutils',
version=version,
install_requires=requirements,
packages=['gffutils', 'gffutils.scripts', 'gffutils.test',
'gffutils.test.data'],
scripts=['gffutils/scripts/gffutils-cli'],
author='Ryan Dale',
package_dir={'gffutils': 'gffutils'},
package_data = {'gffutils': ['test/data/*']},
description="Work with GFF and GTF files in a flexible "
"database framework",
long_description=open("README.rst").read(),
author_email='[email protected]',
url='https://github.com/daler/gffutils',
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'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',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)