forked from jokiefer/django-mptt2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
62 lines (53 loc) · 1.8 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import os
import re
from setuptools import find_namespace_packages, setup
name = 'django-mptt2'
package = 'mptt2'
description = 'Utilities for implementing a modified pre-order traversal tree (nested sets) in django.'
url = 'https://github.com/jokiefer/django-mptt2'
author = 'Jonas Kiefer'
author_email = '[email protected]'
license = 'MIT'
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
def get_version(package):
"""
Return package version as listed in `__version__` in `init.py`.
"""
init_py = open(os.path.join(package, '__init__.py')).read()
return re.search("^__version__ = ['\"]([^'\"]+)['\"]",
init_py, re.MULTILINE).group(1)
version = get_version(package)
setup(
name=name,
version=version,
url=url,
license=license,
description=description,
long_description=long_description,
long_description_content_type='text/x-rst',
author=author,
author_email=author_email,
packages=[p for p in find_namespace_packages(
exclude=('tests*',)) if p.startswith(package)],
include_package_data=True,
install_requires=[
"django>=4.2,<4.3",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP",
"Environment :: Web Environment",
"Framework :: Django",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
)