File: setup.py

package info (click to toggle)
python-bcbio-gff 0.7.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 392 kB
  • sloc: python: 1,754; sh: 13; makefile: 5
file content (22 lines) | stat: -rw-r--r-- 739 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
"""Python setup file for Blue Collar Bioinformatics scripts and modules.
"""
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages

__version__ = "Undefined"
for line in open('BCBio/GFF/__init__.py'):
    if (line.startswith('__version__')):
        exec(line.strip())

setup(name="bcbio-gff",
      version=__version__,
      author="Brad Chapman",
      author_email="chapmanb@50mail.com",
      license="Biopython License",
      description="Read and write Generic Feature Format (GFF) with Biopython integration.",
      url="https://github.com/chapmanb/bcbb/tree/master/gff",
      packages=find_packages(),
      install_requires=["six", "biopython"]
      )