Packaging files

This commit is contained in:
Lafrite 2014-02-21 06:01:34 +01:00
parent 33220c2a3c
commit 4834186bec
8 changed files with 12 additions and 2 deletions

0
pymath/__init__.py Normal file
View File

View File

@ -5,7 +5,6 @@ from generic import Stack, flatten_list, expand_list
from fraction import Fraction from fraction import Fraction
from renders import txt_render, post2in_fix, tex_render from renders import txt_render, post2in_fix, tex_render
from formal import FormalExp from formal import FormalExp
from formal import FormalExp
class Expression(object): class Expression(object):
"""A calculus expression. Today it can andle only expression with numbers later it will be able to manipulate unknown""" """A calculus expression. Today it can andle only expression with numbers later it will be able to manipulate unknown"""

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python #!/usr/bin/env python
# encoding: utf-8 # encoding: utf-8
from arithmetic import gcd from .arithmetic import gcd
class Fraction(object): class Fraction(object):
"""Fractions!""" """Fractions!"""

11
setup.py Normal file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env python
from distutils.core import setup
setup(name='pyMath',
version='0.1dev',
description='Computing like a student',
author='Benjamin Bertrand',
author_email='lafrite@poneyworld.net',
packages=['pymath'],
)