forked from s3lph/matemat
13 lines
244 B
Python
13 lines
244 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='matemat',
|
||
|
version='2.00',
|
||
|
packages=['matemat'],
|
||
|
url='',
|
||
|
license='',
|
||
|
author='s3lph',
|
||
|
author_email='',
|
||
|
description='Replacement for the original Ruby matemat software.'
|
||
|
)
|