-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
68 lines (58 loc) · 2.13 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import inspect
import os
import sys
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
src_folder = os.path.realpath(
os.path.abspath(os.path.join(os.path.split(inspect.getfile(inspect.currentframe()))[0], "src")))
if src_folder not in sys.path:
sys.path.insert(0, src_folder)
def import_version():
from demo import __version__
return __version__
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='waves-demo',
version=import_version(),
packages=find_packages('src'),
include_package_data=True,
package_dir={'': 'src', },
url='https://github.com/lirmm/waves-demo',
license='GPL-v3',
author='Marc Chakiachvili, Vincent Lefort, Anne-Muriel Arigon Chifolleau',
author_email='[email protected], '
description='WebApp for Versatile and Easy bio-informatics Services',
maintainer='LIRMM - ATGC Platform - France',
maintainer_email='[email protected]',
install_requires=[
'django-authtools==1.5.0',
'django-braces==1.11.0',
'django-ckeditor==5.2.2',
'django-countries==4.5',
'django-environ==0.4.4',
'django-ipware==1.1.6',
'django-jet==1.0.6',
'django-mptt==0.8.7',
'django-polymorphic-tree==1.4',
'django-registration==2.2',
'easy_thumbnails==2.3',
'waves-core>=1.6.2',
'waves-galaxy-adaptors>=1.1.3',
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities',
'Topic :: System :: Distributed Computing',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Operating System :: Unix'
],
)