-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (25 loc) · 940 Bytes
/
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
"""Setup script for django-digitalpaper"""
from setuptools import setup
from setuptools import find_packages
setup(
name='django-digitalpaper',
version='0.1',
packages=find_packages(exclude=['test', 'tests',
'example_project']),
include_package_data=True,
license='BSD License',
description='A complete Newspaper viewer in Javascript, canvas and CSS',
long_description=open('README').read(),
author='Djaz Team',
author_email='[email protected]',
url='http://www.liberation.fr/',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
])