forked from CLCMacTeam/besapi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (24 loc) · 765 Bytes
/
setup.py
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
#!/usr/bin/env python
"""
file to configure python build and packaging for pip
"""
try:
from setuptools import setup
except (ImportError, ModuleNotFoundError):
from distutils.core import setup
setup(
name="besapi",
# version= moved to setup.cfg
author="Matt Hansen, James Stewart",
author_email="[email protected], [email protected]",
description="Library for working with the BigFix REST API",
license="MIT",
keywords="bigfix iem tem rest api",
url="https://github.com/jgstew/besapi",
# long_description= moved to setup.cfg
packages=["besapi", "bescli"],
package_data={"besapi": ["schemas/*.xsd"]},
install_requires=["requests", "lxml", "cmd2"],
include_package_data=True,
package_dir={"": "src"},
)