forked from trco/django-bootstrap-modal-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1.3 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
import os
from pathlib import Path
from setuptools import find_packages, setup
PROJECT_ROOT_DIR = Path(__file__).resolve().parent
with open(Path(PROJECT_ROOT_DIR, 'README.rst')) as readme_file:
README = readme_file.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-bootstrap-modal-forms',
version='3.0.4',
packages=find_packages(),
include_package_data=True,
license='MIT License',
description='A Django plugin for creating AJAX driven forms in Bootstrap modal.',
long_description=README,
url='https://github.com/trco/django-bootstrap-modal-forms',
author='Uros Trstenjak',
author_email='[email protected]',
install_requires=[
'Django>=3.2',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)