-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
61 lines (56 loc) · 2.17 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
"""
Description
Setup script to install GFFUtils: utilities for working with
GFF and GTF files
Copyright (C) University of Manchester 2011-2015,2020 Peter Briggs
"""
readme = open('README.rst').read()
# Setup for installation etc
from setuptools import setup
import GFFUtils
setup(
name = "GFFUtils",
version = GFFUtils.get_version(),
description = "utilities for working with GFF and GTF files",
long_description = readme,
url = 'https://github.com/fls-bioinformatics-core/GFFUtils',
maintainer = 'Peter Briggs',
maintainer_email = '[email protected]',
packages = ['GFFUtils',
'GFFUtils.clean',
'GFFUtils.cli'],
entry_points = { 'console_scripts': [
'gff_annotation_extractor = GFFUtils.cli.gff_annotation_extractor:main',
'gff_cleaner = GFFUtils.cli.gff_cleaner:main',
'gtf_extract = GFFUtils.cli.gtf_extract:main',
'gtf2bed = GFFUtils.cli.gtf2bed:main',
'GFF3_Annotation_Extractor = GFFUtils.cli.gff_annotation_extractor:GFF3_Annotation_Extractor',
'GFFcleaner = GFFUtils.cli.gff_cleaner:GFFcleaner',
'GTF_extract = GFFUtils.cli.gtf_extract:GTF_extract',]
},
license = 'AFL-3',
install_requires = ['genomics-bcftbx'],
test_suite = 'nose.collector',
tests_require = ['nose'],
platforms="Posix; MacOS X; Windows",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"License :: OSI Approved :: Academic Free License (AFL)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
python_requires = '>=2.7',
include_package_data=True,
zip_safe = False
)