Bertrand_NSI/setup.py

17 lines
382 B
Python
Raw Normal View History

2020-04-28 07:09:30 +00:00
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
setup(
2021-06-09 13:35:19 +00:00
name="NSI_Bertrand",
2021-06-25 06:51:48 +00:00
version="0.5.1",
2021-06-09 13:35:19 +00:00
description="Fonctions et outils pour la NSI",
author="Benjamin Bertrand",
author_email="benjamin.bertrand@ac-lyon.fr",
packages=find_packages(),
include_package_data=True,
)