File: setup.py

package info (click to toggle)
parsnp 1.2%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,288 kB
  • sloc: cpp: 3,859; python: 1,243; ansic: 937; makefile: 22; sh: 21
file content (27 lines) | stat: -rw-r--r-- 877 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
23
24
25
26
27
import sys
import os
from setuptools import setup
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext

def read(fname):
    return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(
      name = "ParSNP",
      version = "1.0",
      author = "Todd J. Treangen, Brian Ondov & Adam Phillippy",
      author_email = "treangen+ParSNP@gmail.com",
      description = ("Rapid bacterial core genome alignment and WGST"),
      license = "BSD",
      keywords = "multialignment snps bionformatics",
      url = "http://github.com/marbl/parsnp",
      long_description=read('README.md'),
      classifiers=[
                   "Development Status :: 1 - Release"
                   ],
      scripts=['src/parsnp.py'],
      #    ext_modules = ext_modules,
      cmdclass = {'build_ext': build_ext}
      )