-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 754 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (25 loc) · 754 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
import setuptools
setuptools.setup(
name='pacmods',
version='0.1.1',
description='Arch Linux tool to show changes to system config files',
url='https://github.com/c4rlo/pacmods',
author='Carlo Teubner',
author_email='carlo@cteubner.net',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: System :: Systems Administration',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
keywords='arch linux configuration',
py_modules=["pacmods"],
install_requires=['pyalpm'],
entry_points={
'console_scripts': [
'pacmods=pacmods:main',
],
},
)