-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
89 lines (84 loc) · 2.42 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import pathlib
from setuptools import find_packages, setup
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="national-movie-database",
version="0.0.1",
description="National Movie Database - SDA TR, AL",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gledi/national-movie-database",
author="Gledi Caushaj",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Topic :: Education",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"License :: Free For Educational Use",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Framework :: Django :: 4",
"Framework :: Django :: 4.2",
"Operating System :: OS Independent",
],
keywords="movies, final, project, SDA",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.12",
install_requires=[
"django[argon2]",
"environs",
"dj-database-url",
"djangorestframework",
"django-registration-redux",
"django-hashids",
"django-crispy-forms",
"crispy-bootstrap5",
"pillow",
"django-imagekit",
"django-mptt",
"django-taggit",
"django-filter",
"whitenoise[brotli]",
"stripe",
"psycopg[c,pool]",
"mistune",
"pygments",
],
extras_require={
"dev": [
"django-debug-toolbar",
"django-extensions",
"ipython",
"ruff",
"black",
"isort",
"graphviz",
"mypy",
],
"test": [
"pytest",
"pytest-django",
"coverage",
"pytest-cov",
"model-bakery",
"faker",
],
"prod": [
"gunicorn",
],
},
entry_points={
"console_scripts": [
"nmdb=nmdb.manage:main",
],
},
project_urls={
"Bug Reports": "https://github.com/gledi/national-movie-database/issues",
"Source": "https://github.com/gledi/national-movie-database",
},
)