-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 1.16 KB
/
setup.py
File metadata and controls
36 lines (31 loc) · 1.16 KB
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
from os import path
from setuptools import find_packages, setup
from rinzler import __version__
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="rinzler",
version=__version__,
long_description_content_type="text/markdown",
description="Django-based REST API Framework",
long_description=long_description,
url="https://github.com/feliphebueno/Rinzler",
author="Rinzler",
author_email="feliphezion@gmail.com",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
keywords="rest, api, framework, django",
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
python_requires=">=3.8",
install_requires=["Django~=5.1", "PyYAML==6.0.2", "setuptools==78.1.1"],
)