-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
37 lines (34 loc) · 1.33 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
#!/usr/bin/env python
from distutils.core import setup
readme = open("README.rst").read()
history = open("HISTORY.rst").read().replace(".. :changelog:", "")
setup(
name="django-teryt-tree",
description="Django-teryt-tree is a Django app that implements TERYT database as tree by django-mptt.",
long_description=readme + "\n\n" + history,
author="Adam Dobrawy",
author_email="[email protected]",
url="https://github.com/ad-m/django-teryt-tree",
packages=["teryt_tree"],
include_package_data=True,
use_scm_version=True,
setup_requires=["setuptools_scm", "wheel"],
install_requires=["django-mptt", "django-model-utils", "django-autoslug", "tqdm"],
download_url="https://github.com/ad-m/django-teryt-tree/",
zip_safe=False,
keywords="django-teryt-tree",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: Polish",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)