-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 1.11 KB
/
setup.py
File metadata and controls
28 lines (26 loc) · 1.11 KB
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
#!/usr/bin/env python3
from setuptools import setup
setup(name="sequencing_utilities",
version="0.1.a1",
description="Utilities for processing sequencing data",
author="Douglas McCloskey",
author_email="dmccloskey87@gmail.com",
url="https://github.com/dmccloskey/sequencing_utilities",
packages=["sequencing_utilities"],
#entry_points={"console_scripts":
# ["makegff = sequencing_utilities.makegff:main",
# "sam2bam = sequencing_utilities.sam2bam:main",
# "mapped_percentage = sequencing_utilities.mapped_percentage:main"]},
#classifiers=[
#'Development Status :: 5 - Production/Stable',
#'Environment :: Console',
#'Intended Audience :: Science/Research',
#'Operating System :: OS Independent',
#'Programming Language :: Python :: 3.4+',
#'Programming Language :: Cython',
#'Programming Language :: Python :: Implementation :: CPython',
#'Topic :: Scientific/Engineering',
#'Topic :: Scientific/Engineering :: Bio-Informatics'
#],
platforms="GNU/Linux, Mac OS X >= 10.7, Microsoft Windows >= 7",
)