-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (27 loc) · 1 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
import setuptools
attrs = {"version": "1.17"}
with open("README.md") as f:
attrs["long_description"] = f.read()
attrs["long_description_content_type"] = "text/markdown"
setuptools.setup(
name="django-better-choices",
author="Alexander Lokhman",
author_email="alex.lokhman@gmail.com",
description="Better choices library for Django web framework",
keywords=["django", "choices"],
license="MIT",
url="https://github.com/lokhman/django-better-choices",
download_url=f"https://github.com/lokhman/django-better-choices/tarball/{attrs['version']}",
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(),
python_requires=">=3.7",
zip_safe=True,
**attrs,
)