33 lines
1.0 KiB
Python
33 lines
1.0 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="resumen",
|
|
version="0.0.1",
|
|
description="",
|
|
url="",
|
|
author="",
|
|
author_email="",
|
|
license="GNU AGPL3",
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
python_requires=">=3.8",
|
|
classifiers=[
|
|
# How mature is this project? Common values are
|
|
# 3 - Alpha
|
|
# 4 - Beta
|
|
# 5 - Production/Stable
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: Science/Research",
|
|
"Intended Audience :: Information Technology",
|
|
"Topic :: Software Development :: Build Tools",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Framework :: Django :: 4.2",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
],
|
|
)
|