-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 1.16 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import advanced_reports
setup(
name="django-advanced-reports",
version=advanced_reports.__version__,
url='https://github.com/citylive/django-advanced-reports',
license='BSD',
description="Advanced reports for Django",
long_description=open('README.rst', 'r').read(),
author='Jef Geskens, City Live nv',
packages=['advanced_reports'],
package_data = {'advanced_reports': [
'static/*.js', 'static/*/*.js', 'static/*/*/*.js',
'static/*.css', 'static/*/*.css', 'static/*/*/*.css',
'static/*.png', 'static/*/*.png', 'static/*/*/*.png', 'static/*/*/*/*.png',
'templates/*.html', 'templates/*/*.html', 'templates/*/*/*.html', 'templates/*/*/*/*.html',
],},
zip_safe=False, # Don't create egg files, Django cannot find templates in egg files.
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Framework :: Django',
],
)