forked from hudora/pyJasper
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 825 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import codecs
from setuptools import setup, find_packages
setup(name='pyJasper',
maintainer='Maximillian Dornseif',
maintainer_email='md@hudora.de',
url='https://github.com/hudora/pyJasper',
version='0.41b',
description='toolkit to access JasperReports from Python',
long_description=codecs.open('README.textile', "r", "utf-8").read(),
license='BSD',
classifiers=['Intended Audience :: Developers',
'Programming Language :: Python'],
packages = find_packages(),
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['*.xml', '*.jrxml', '*.jar', '*.py', '*.sh'],
#backend/lib/
#backend/webapps/
},
install_requires = ['httplib2'],
zip_safe = False,
)