-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (29 loc) · 1.05 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
from setuptools import setup, find_packages
from googleforms import version
setup(
name='django-googleforms',
version=version,
description="Application which help with parsing google forms.",
keywords='django, admin, pages, google forms',
author='Lubos Matl',
author_email='[email protected]',
url='https://github.com/matllubos/django-googleforms',
license='GPL',
package_dir={'googleforms': 'googleforms'},
include_package_data=True,
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: Czech',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
zip_safe=False
)