-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (23 loc) · 860 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
__author__ = 'Noah Peeters'
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='mathexpressions',
version='1.1.0',
description='Python library for parsing and solving math expressions.',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Text Processing :: Linguistic',
'Topic :: Scientific/Engineering :: Mathematics'
],
url='https://github.com/NoahPeeters/pymathexpressions',
author='Noah Peeters',
author_email='noah.peeters@icloud.com',
license='MIT',
packages=['mathexpressions'],
zip_safe=False)