-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (26 loc) · 1.11 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
try:
from setuptools import setup, Extension
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, Extension
setup(
name = 'track',
version = '1.3.0-dev',
description = 'Python package for reading and writing genomic data',
long_description = open('README.md').read(),
license = 'GNU General Public License 3.0',
url = 'http://xapple.github.com/track/',
author = 'Lucas Sinclair',
author_email = '[email protected]',
classifiers = ['Topic :: Scientific/Engineering :: Bio-Informatics'],
packages = ['track',
'track.parse',
'track.serialize',
'track.test',
'track.manips',
],
ext_modules = [Extension('track.pyrow', ['src/pyrow.c'])],
scripts = ['track/track'],
install_requires = ['genomes'],
)