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.
documentex/setup.py

29 lines
691 B
Python

from setuptools import setup, find_packages
from documentex.constantes_document_latex import version
setup(
name="documentex",
version=version,
packages=find_packages(),
include_package_data=True,
py_modules=['documentex'],
entry_points={
'console_scripts': [
'documentex = documentex.documentex:documentex',
]
},
install_requires=[
"jinja2",
"Click",
"PyInquirer",
],
author = "David Denoncin",
author_email = "math@denoncin.fr",
url = "math.denoncin.fr",
description = "Utilitaire pour créer des arborescence de dossiers LaTeX",
classifiers=[
"Licence :: WTFPL"
]
)