-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
45 lines (40 loc) · 1.46 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# encoding:utf-8
from setuptools import find_packages, setup
from django_popup_view_field import __version__ as version
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='django-popup-view-field',
version=version,
description='Field and widget can render bootstrap dialog window with content from django view',
long_description_content_type="text/markdown",
url='https://github.com/djk2/django-popup-view-field',
author='Grzegorz Tężycki',
author_email='[email protected]',
long_description=readme(),
license='MIT',
packages=find_packages(exclude=['docs']),
package_data={'django_popup_view_field': [
'templates/django_popup_view_field/*',
'static/django_popup_view_field/js/*',
'locale/pl/LC_MESSAGES/*'
]},
tests_require=['Django', 'django-bootstrap3', 'django-crispy-forms'],
include_package_data=True,
zip_safe=False,
install_requires=['Django>=1.8'],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
],
keywords='popup crispy bootstrap views',
)