-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (17 loc) · 676 Bytes
/
Copy pathsetup.py
File metadata and controls
18 lines (17 loc) · 676 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import setuptools
setuptools.setup(
name = "maexpa",
version = "0.2",
author = "Alexandre Emsenhuber",
author_email = "emsenhuber@lpl.arizona.edu",
description = "Extensible mathematical expression analyzer with callbacks for variables and functions",
long_description = open( "README.md", "r" ).read(),
long_description_content_type = "text/markdown",
url = "https://github.com/aemsenhuber/math-expression-parser",
packages = setuptools.find_packages(),
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)