-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (45 loc) · 1.79 KB
/
Copy pathsetup.py
File metadata and controls
56 lines (45 loc) · 1.79 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#! /usr/bin/env python
import os
from setuptools import setup
def read_file(file_name):
return os.path.join(os.path.dirname(__file__), file_name)
# read readme as long description
long_description = read_file('README.rst')
# read version from single location
__version__ = 'undefined'
version_file = os.path.dirname(os.path.realpath(__file__)) + \
'/tefingerprint/version.py'
exec(open(version_file).read())
# set download url based on version
download_url = ('https://github.com/PlantandFoodResearch/TEFingerprint/'
'archive/'
'v' + __version__ + '.tar.gz')
setup(name='tefingerprint',
version=__version__,
author='Tim Millar',
author_email='tim.millar@plantandfood.co.nz',
url='https://github.com/PlantandFoodResearch/TEFingerprint',
download_url=download_url,
description='Toolkit for identifying transposon movement',
long_description=long_description,
license='MIT',
scripts=['applications/tefingerprint',
'applications/tef-extract-informative',
'applications/tef-filter-gff'],
packages=['tefingerprint',
'tefingerprint.util',
'tefingerprint.util.numpy',
'tefingerprint._applications'],
keywords=['biology',
'bioinformatics',
'transposon',
'transposable element',
'cluster'],
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering',
'Operating System :: Unix',
'License :: OSI Approved :: MIT License'],
python_requires='>=3.4.0'
)