File: setup.py

package info (click to toggle)
ngs-sdk 1.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,236 kB
  • ctags: 4,917
  • sloc: cpp: 20,310; perl: 6,833; java: 5,054; python: 1,674; makefile: 674; xml: 233; sh: 70
file content (23 lines) | stat: -rw-r--r-- 611 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
from distutils.core import setup
import sys
#import version

#ver = version.get_git_version()

decimal_ver = sys.version_info[0]*10 + sys.version_info[1]
min_version = 26

if decimal_ver < min_version:
    print ("At least python " + str(min_version/10.) + " is required to automatically install ngs package, and you're using " + str(decimal_ver/10.))
    exit(1)

setup(name='ngs',
      #version=ver,
      version = "1.0",
      author='sra-tools',
      author_email='sra-tools@ncbi.nlm.nih.gov',
      packages=['ngs'],
      include_package_data=True,
      scripts=[],
      #test_suite="tests",
      )