Skip to content

Commit a4b95f0

Browse files
committed
setuptools
1 parent e322f14 commit a4b95f0

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

CHANGES.PY

Whitespace-only changes.

MANIFEST.py

Whitespace-only changes.

pyonms/MANIFEST.in

Whitespace-only changes.

setup.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import os
2+
from setuptools import setup
3+
4+
5+
def read(fname):
6+
return open(os.path.join(os.path.dirname(__file__), fname)).read()
7+
8+
9+
setup(
10+
name="PyONMS",
11+
version="0.0.1",
12+
author="Mark Mahacek",
13+
author_email="[email protected]",
14+
packages=["pyonms", "pyonms.dao", "pyonms.models", "pyonms.portal", "pyonms.utils"],
15+
url="https://github.com/mmahacek/PyONMS",
16+
license="LICENSE.txt",
17+
description="A Python library for accessing the OpenNMS REST API.",
18+
long_description=read("README.md"),
19+
install_requires=["requests", "python-dotenv", "xmltodict", "tqdm"],
20+
)

0 commit comments

Comments
 (0)