22 lines
478 B
Python
22 lines
478 B
Python
#!/usr/bin/env python
|
|
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name='mapytex',
|
|
version='2.0.5',
|
|
description='Computing like a student',
|
|
author='Benjamin Bertrand',
|
|
author_email='programming@opytex.org',
|
|
url='http://git.opytex.org/lafrite/Mapytex',
|
|
packages=['mapytex'],
|
|
include_package_data = True,
|
|
install_requires=[
|
|
'multipledispatch',
|
|
'tabulate',
|
|
],
|
|
)
|