forked from apache/airavata-django-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (51 loc) · 1.56 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
import os
from setuptools import find_packages, setup
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
setup(
name='airavata-django-portal',
version='0.1',
url='https://github.com/apache/airavata-django-portal',
author='Apache Software Foundation',
author_email='[email protected]',
description=('The Airavata Django Portal is a web interface to the '
'Apache Airavata API implemented using the Django web '
'framework.'),
long_description=read('README.md'),
license='Apache License 2.0',
packages=find_packages(),
install_requires=[
'Django',
'djangorestframework',
'requests',
'requests-oauthlib',
'thrift',
'thrift_connector',
'wagtail',
'wagtailfontawesome',
'jupyter',
'papermill',
"airavata-django-portal-sdk",
],
extras_require={
'dev': [
'flake8',
'flake8-isort'
],
'mysql': [
'mysqlclient'
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application'
]
)