-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
35 lines (32 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
from os import path
from setuptools import find_packages, setup
with open(path.join(path.dirname(__file__), "README.rst")) as f:
readme = f.read()
setup(
name="django-choices",
version="2.0.0",
license="MIT",
description="Sanity for the django choices functionality.",
long_description=readme,
install_requires=["Django>=3.2"],
url="https://github.com/bigjason/django-choices",
author="Jason Webb",
author_email="[email protected],[email protected]",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: PyPy",
],
)