forked from scieloorg/scielo-django-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 1.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
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
except IOError:
README = CHANGES = ''
setup(name='scielo-django-extensions',
version='0.4',
description='Extensions commonly used in SciELO for bibliographic metadata management.',
packages=find_packages(),
include_package_data=True,
zip_safe = False,
long_description=README + '\n\n' + CHANGES,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
],
keywords='SciELO Django Extensions',
author='SciELO',
author_email='[email protected]',
url='http://docs.scielo.org/',
download_url='',
license='',
test_suite='scielo_extensions.tests',
tests_require=['Nose'],
)