-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.27 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.27 KB
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
from setuptools import setup, find_packages
with open("README.md") as fh:
long_description = fh.read()
setup(
name='django-progressive',
version='1.0.4',
packages=['django_pwa', 'django_pwa.static.django_pwa', 'django_pwa.templates', 'django_pwa.templatetags'],
package_data={"django_pwa.templates": ["*"],
"django_pwa.static.django_pwa": ["*"]},
license='GPL License',
description='Library for adding progressive web app functionality in your django project.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/m19t12/django-pwa',
author='Manolis Tsoukalas',
author_email='emmtsoukalas@gmail.com',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 2.0',
'Framework :: Django :: 3.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)