-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 708 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
# Load the version string
exec(open('hyperop/_version.py').read())
setup(
name="hyperop",
packages=['hyperop'],
version=__version__,
download_url='https://github.com/thoppe/python-hyperoperators/tarball/1.1',
author="Travis Hoppe",
author_email="travis.hoppe+hyperop@gmail.com",
description=(
"Hyperoperators (succession, addition, multiplication, exponentiation, tetration and higher) in python."),
license = "Creative Commons Attribution-ShareAlike 4.0 International License",
keywords = ["math", "hyperoperators", "uparrow", "large-numbers", ],
url="https://github.com/thoppe/python-hyperoperators",
test_suite="tests",
)