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.
21 lines
464 B
Python
21 lines
464 B
Python
from setuptools import setup, find_packages
|
|
from libargfunc.constantes_libargfunc import version
|
|
|
|
setup(
|
|
name="libargfunc",
|
|
version=version,
|
|
packages=find_packages(),
|
|
|
|
install_requires=["sympy"],
|
|
|
|
author="David Denoncin",
|
|
author_email="math@denoncin.fr",
|
|
url="math.denoncin.fr",
|
|
description="Mes fonctions perso pour nettoyer les arguments donnés pour définir une fonction",
|
|
classifiers=[
|
|
"Licence :: WTFPL"
|
|
]
|
|
)
|
|
|
|
|