-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
38 lines (35 loc) · 1.2 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
from setuptools import setup
with open("README.md", "r") as readme:
README = readme.read()
version = "0.1.11"
setup(
name="Django-ddd",
version=version,
url="https://github.com/jdiazromeral/django-ddd",
license="MIT License",
author="Javier Díaz-Romeral Torralbo",
description="An app for a cleaner Django",
long_description=README,
long_description_content_type="text/markdown",
packages=["django_ddd"],
zip_safe=False,
include_package_data=True,
platforms="any",
install_requires=["Django>=4.1"],
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Utilities",
],
python_requires=">=3.11",
)