-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 920 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
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as file:
LONG_DESCRIPTION = file.read()
with open('requirements.txt') as pkg:
required = pkg.read().splitlines()
setup(
name='quicksystem',
version="0.1.0",
description="CLI tool to reserve, provision a system and use Jenkins job for Satellite.",
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author="Vijay Singh",
author_email="[email protected]",
python_requires=">=3.6",
url="https://github.com/vijay8451/quicksystem",
py_modules=['quicksystem'],
install_requires=required,
packages=find_packages("quicksystem"),
entry_points={"console_scripts": ["quicksystem=quicksystem:cli"]},
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)