-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (20 loc) · 702 Bytes
/
setup.py
File metadata and controls
20 lines (20 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
setup(
name = "zequals",
packages = ["zequals"],
version = "0.0.5",
description = "Ruthless Rounding at it's Finest :)",
author = "Henri Kuiper",
author_email = "henrikuiper@zdevops.com",
url = "http://zdevops.tumblr.com/post/58266444071/zequals-ruthless-rounding",
download_url = "",
keywords = ["numberphile", "Rob Eastaway", "zequalize"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
],
)