You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
903 B
Python

2 years ago
from setuptools import find_packages, setup
2 years ago
with open("README.md") as readme:
2 years ago
setup(
2 years ago
name="subjugate",
# version=__import__("subjugate.__version__").__version__,
version="1.0.0",
url="https://github.com/estheruary/subjugate",
license="LGPLv3",
description="Write templates in Django with Dominate",
2 years ago
long_description=readme.read(),
2 years ago
long_description_content_type="text/markdown",
author="Estelle Poulin",
author_email="dev@inspiredby.es",
packages=find_packages(exclude=["tests"]),
2 years ago
include_package_data=True,
2 years ago
install_requires=["Django>=2.2"],
2 years ago
python_requires=">=3.6",
zip_safe=False,
project_urls={
2 years ago
"Source": "https://github.com/estheruary/subjugate",
"Changelog": "https://github.com/estheruary/subjugate/blob/main/CHANGELOG.md",
2 years ago
},
)