blob: 9b26108bd16a340dfcf3e03ade9b711f880a4b37 [file] [log] [blame]
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-sdk",
version="0.1",
url="https://github.com/apache/airavata-django-portal-sdk",
author="Apache Software Foundation",
author_email="dev@airavata.apache.org",
description=(
"The Airavata Django Portal SDK is a library that makes "
"it easier to develop Airavata Django Portal customizations."
),
long_description=read("README.md"),
license="Apache License 2.0",
packages=find_packages(),
install_requires=[
"django",
# https://stackoverflow.com/a/61931498
"airavata-python-sdk @ git+https://github.com/apache/airavata.git@develop#egg=airavata-python-sdk&subdirectory=airavata-api/airavata-client-sdks/airavata-python-sdk",
],
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",
],
dependency_links = [
# "git+https://github.com/apache/airavata.git@develop#egg=airavata-python-sdk&subdirectory=airavata-api/airavata-client-sdks/airavata-python-sdk",
]
)