-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (47 loc) · 1.47 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
import os
import sys
import runpy
from setuptools import setup, find_packages
VERSION = runpy.run_path("src/travel/__init__.py")["get_version"]()
setup(
name="django-travel",
version=VERSION,
url="https://github.com/dakrauth/travel",
description="A travelogue and bucket list app for Django",
author="David A Krauth",
author_email="[email protected]",
platforms=["any"],
license="MIT License",
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
python_requires=">=3.10",
zip_safe=False,
install_requires=[
"Django>=4.2,<5.2",
"django-bootstrap5",
"python-dateutil",
"djangorestframework",
"django-vanilla-views",
],
extras_require={
"test": ["pytest-django", "pytest", "pytest-cov"],
"dev": ["ipdb", "django-extensions"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
"Topic :: Education",
],
)