-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
37 lines (34 loc) · 1.17 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
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, "README.md")).read()
setup(
name="django-admin-confirm",
version="1.0.0",
packages=["admin_confirm"],
description=("Adds confirmation to Django Admin changes, additions and actions"),
long_description_content_type="text/markdown",
long_description=README,
author="Thu Trang Pham",
author_email="[email protected]",
url="https://github.com/trangpham/django-admin-confirm/",
license="Apache 2.0",
install_requires=[
"Django>=3.2",
],
python_requires=">=3.7",
project_urls={
"Release Notes": "https://github.com/TrangPham/django-admin-confirm/releases",
},
# ISSUE-4: Ensure that package includes template and css folders
# list files in MANIFEST.in
include_package_data=True,
classifiers=[
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
],
)