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.
19 lines
418 B
Python
19 lines
418 B
Python
from setuptools import setup, find_packages
|
|
from libcurses.constantes_curses import version
|
|
|
|
setup(
|
|
name="libcurses",
|
|
version=version,
|
|
packages=find_packages(),
|
|
|
|
author="David Denoncin",
|
|
author_email="math@denoncin.fr",
|
|
url="math.denoncin.fr",
|
|
description="Mes fonctions perso pour faciliter l'utilisation de la bibliothèque curses",
|
|
classifiers=[
|
|
"Licence :: WTFPL"
|
|
]
|
|
)
|
|
|
|
|