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.

18 lines
430 B
Python

from setuptools import setup, find_packages
from libcsv.constantes_csv import version
setup(
name="libcsv",
version=version,
packages=find_packages(),
install_requires=["pylatex"],
author="David Denoncin",
author_email="math@denoncin.fr",
url="math.denoncin.fr",
description="Mes fonctions perso pour faciliter l'utilisation de fichiers CSV",
classifiers=[
"Licence :: WTFPL"
]
)