2014-02-21 05:01:34 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2015-05-14 12:10:11 +00:00
|
|
|
try:
|
2019-07-11 16:06:49 +00:00
|
|
|
from setuptools import setup, find_packages
|
2015-05-14 12:10:11 +00:00
|
|
|
except ImportError:
|
|
|
|
from distutils.core import setup
|
2014-02-21 05:01:34 +00:00
|
|
|
|
2017-04-17 13:48:52 +00:00
|
|
|
setup(
|
2019-10-13 19:01:31 +00:00
|
|
|
name="mapytex",
|
2020-08-20 18:42:46 +00:00
|
|
|
version="2.3.1",
|
2019-10-13 19:01:31 +00:00
|
|
|
description="Computing like a student",
|
|
|
|
author="Benjamin Bertrand",
|
|
|
|
author_email="programming@opytex.org",
|
|
|
|
url="http://git.opytex.org/lafrite/Mapytex",
|
|
|
|
# packages=['mapytex'],
|
2019-07-11 16:06:49 +00:00
|
|
|
packages=find_packages(),
|
2019-10-13 19:01:31 +00:00
|
|
|
include_package_data=True,
|
|
|
|
install_requires=["multipledispatch", "tabulate"],
|
|
|
|
)
|