-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (29 loc) · 1.02 KB
/
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
from setuptools import setup, find_packages
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Topic :: System :: Systems Administration",
"Topic :: Terminals",
"Topic :: Utilities"
]
setup(
name='nspctl',
packages=find_packages(where='src'),
packages_dir={"": "src"},
url='https://github.com/mofm/nspctl',
license='GPLv3',
author='Emre Eryilmaz',
author_email='[email protected]',
description='nspctl, management tool for systemd-nspawn containers',
scripts=['scripts/nspctl'],
classifiers=classifiers,
keywords='nspawn, container, systemd, systemd-nspawn, systemd-container',
python_requires='>=3.8',
)