Mapytex/setup.py

18 lines
413 B
Python
Raw Normal View History

2014-02-21 05:01:34 +00:00
#!/usr/bin/env python
2015-05-14 12:10:11 +00:00
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
2014-02-21 05:01:34 +00:00
2017-04-17 13:48:52 +00:00
setup(
name='Mapytex',
2019-06-27 15:05:51 +00:00
version='2.01',
2017-04-17 13:48:52 +00:00
description='Computing like a student',
author='Benjamin Bertrand',
2019-06-27 15:20:41 +00:00
author_email='programming@opytex.org',
url='http://git.opytex.org/lafrite/Mapytex',
2017-04-17 13:48:52 +00:00
packages=['mapytex'],
# install_requires=['pyparsing', 'sympy'],
)