Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
django-eoaauthors/setup.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
36 lines (32 sloc)
1.22 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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-eoaauthors', | |
version='1.0', | |
packages=find_packages(), | |
include_package_data=True, | |
license='Coffeeware', # example license | |
description='A Django app for displaying author information on the EOA publication platform.', | |
long_description=README, | |
url='http://www.edition-open-access.de/', | |
author='Klaus Thoden', | |
author_email='kthoden@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', | |
], | |
) |