-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1020 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
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python3
# Copyright 2022 Canonical Ltd.
# See LICENSE file for licensing details.
from setuptools import setup, find_packages
setup(
name="sysprober",
version="0.1.2",
description="Probe your Linux host for information about itself",
author="Jason C. Nucciarone",
author_email="[email protected]",
license="Apache-2.0",
python_requires=">=3.8",
packages=find_packages(
where="src",
include=["sysprober*"],
),
package_dir={"": "src"},
install_requires=[
"pydantic",
],
keywords=[
"system-administration",
"automation",
],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)