django-authority/setup.py

43 lines
1.3 KiB
Python
Raw Permalink Normal View History

2009-07-09 23:09:42 +00:00
import os
2009-06-08 10:06:14 +00:00
from setuptools import setup, find_packages
2013-03-18 20:58:50 +00:00
2009-07-09 23:09:42 +00:00
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
2018-01-28 13:14:01 +00:00
2009-06-08 10:06:14 +00:00
setup(
name="django-authority",
2018-01-28 13:17:11 +00:00
use_scm_version=True,
2013-03-18 20:58:50 +00:00
description=(
"A Django app that provides generic per-object-permissions "
"for Django's auth app."
),
long_description=read("README.rst"),
long_description_content_type="text/x-rst",
author="Jannis Leidel",
author_email="jannis@leidel.info",
license="BSD",
url="https://github.com/jazzband/django-authority/",
packages=find_packages(exclude=("example", "example.*")),
2009-06-08 10:06:14 +00:00
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
2020-11-26 09:00:51 +00:00
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
2020-11-26 09:00:51 +00:00
"Programming Language :: Python :: 3.8",
"Framework :: Django",
2009-06-08 10:06:14 +00:00
],
install_requires=["django"],
setup_requires=["setuptools_scm"],
include_package_data=True,
2009-06-08 10:06:14 +00:00
zip_safe=False,
)