-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (29 loc) · 853 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
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.rst").read_text()
setup(
name = 'KojiChannelValidator',
packages = ['kojichannelvalidator'],
version = '0.1.1',
license='MIT',
description = 'Identify system resource drift across many Koji builders',
long_description=long_description,
long_description_content_type='text/x-rst',
author = 'Rory Wirch',
url = 'https://github.com/RoryWirch/KojiChannelValidator',
install_requires=[
"requests",
"koji"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
"console_scripts":[
"kcv=kojichannelvalidator.__main__:main",
]
},
)