Core: publish 2.0.8 version

This commit is contained in:
Bertrand Benjamin 2019-07-11 18:06:49 +02:00
parent 63de956a4f
commit ed9191a3f1
1 changed files with 4 additions and 3 deletions

View File

@ -1,18 +1,19 @@
#!/usr/bin/env python
try:
from setuptools import setup
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
setup(
name='mapytex',
version='2.0.5',
version='2.0.8',
description='Computing like a student',
author='Benjamin Bertrand',
author_email='programming@opytex.org',
url='http://git.opytex.org/lafrite/Mapytex',
packages=['mapytex'],
#packages=['mapytex'],
packages=find_packages(),
include_package_data = True,
install_requires=[
'multipledispatch',