mirror of https://github.com/estheruary/subjugate
fix csrf
parent
b845aa6c19
commit
d5488a2fda
@ -1,23 +1,24 @@
|
|||||||
from setuptools import find_packages, setup
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
with open('README.md') as readme:
|
with open("README.md") as readme:
|
||||||
setup(
|
setup(
|
||||||
name='subjugate',
|
name="subjugate",
|
||||||
version=__import__("subjugate").__version__,
|
# version=__import__("subjugate.__version__").__version__,
|
||||||
url='https://github.com/estheruary/subjugate',
|
version="1.0.0",
|
||||||
license='LGPLv3',
|
url="https://github.com/estheruary/subjugate",
|
||||||
description='Write templates in Django with Dominate',
|
license="LGPLv3",
|
||||||
|
description="Write templates in Django with Dominate",
|
||||||
long_description=readme.read(),
|
long_description=readme.read(),
|
||||||
long_description_content_type='text/markdown',
|
long_description_content_type="text/markdown",
|
||||||
author='Estelle Poulin',
|
author="Estelle Poulin",
|
||||||
author_email='dev@inspiredby.es',
|
author_email="dev@inspiredby.es",
|
||||||
packages=find_packages(exclude=['tests']),
|
packages=find_packages(exclude=["tests"]),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
install_requires=["django>=2.2"],
|
install_requires=["Django>=2.2"],
|
||||||
python_requires=">=3.6",
|
python_requires=">=3.6",
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
project_urls={
|
project_urls={
|
||||||
'Source': 'https://github.com/estheruary/subjugate',
|
"Source": "https://github.com/estheruary/subjugate",
|
||||||
'Changelog': 'https://github.com/estheruary/subjugate/blob/main/CHANGELOG.md',
|
"Changelog": "https://github.com/estheruary/subjugate/blob/main/CHANGELOG.md",
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
__version__ = "0.0.1"
|
Loading…
Reference in New Issue