29 lines
890 B
Python
29 lines
890 B
Python
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="0.2.2",
|
|
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="thuutrangpham@gmail.com",
|
|
url="https://github.com/trangpham/django-admin-confirm/",
|
|
license="Apache 2.0",
|
|
install_requires=[
|
|
"Django>=1.7",
|
|
],
|
|
python_requires=">=3",
|
|
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,
|
|
)
|