-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (42 loc) · 1.15 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
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
#!/usr/bin/env python
from os.path import join, dirname
from setuptools import setup
directory = dirname(__file__)
# Get version
with open(join(directory,'tail_tools','__init__.py'),'rU') as f:
exec f.readline()
setup(
name='tail-tools',
version=VERSION,
description='Analyse PAT-Seq RNA expression data.',
url = 'https://github.com/Victorian-Bioinformatics-Consortium/tail-tools',
author = 'Paul Harrison',
author_email = '[email protected]',
packages = [
'tail_tools',
'tail_tools.motifer'
],
package_data = {
'tail_tools' : [
'tail_tools.R',
'web/*.html',
'web/*.css',
'web/*.js',
'web/third_party/*',
'DESCRIPTION',
'NAMESPACE',
'R/*',
],
},
entry_points = {
'console_scripts' : [
'tail-tools = tail_tools:main',
],
},
install_requires = [
'nesoni'
],
classifiers = [
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
],
)