-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 783 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (25 loc) · 783 Bytes
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
28
29
from setuptools import setup
setup(
name="pyOpsMap",
version="0.0.1",
packages=[
"pyOpsMap"
],
author="Tyler Agee",
author_email="tyler@pyroturtle.com",
url="https://github.com/tekton/pyOpsMap",
license="MIT",
description="Mapping operators to a dictionary switch",
long_description="Check the file README.md",
keywords="operator",
install_requires=[],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
package_data={"pyOpsMap": ["README.md"]}
)