Permalink
Cannot retrieve contributors at this time
# -*- coding: utf-8; mode: python -*- | |
import os | |
from setuptools import find_packages, setup | |
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: | |
README = readme.read() | |
# allow setup.py to be run from any path | |
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) | |
setup( | |
name='django-eoaprojects', | |
version='1.0', | |
packages=find_packages(), | |
include_package_data=True, | |
license='Coffeeware', # example license | |
description='A Django app for displaying EOA projects.', | |
long_description=README, | |
url='http://www.edition-open-access.de/', | |
author='Samuel Gfrörer', | |
author_email='sgfroerer@mpiwg-berlin.mpg.de', | |
classifiers=[ | |
'Environment :: Web Environment', | |
'Framework :: Django', | |
'Framework :: Django :: 1.8', | |
'Intended Audience :: Developers', | |
'License :: OSI Approved :: Coffeeware', | |
'Operating System :: OS Independent', | |
'Programming Language :: Python', | |
'Programming Language :: Python :: 3.5', | |
'Programming Language :: Python :: 3.6', | |
'Topic :: Internet :: WWW/HTTP', | |
'Topic :: Internet :: WWW/HTTP :: Dynamic Content', | |
], | |
) |