-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 971 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
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = fh.read()
setup(
name='circleci-env-cli',
version='0.2.2',
author = "Phillipe Smith",
author_email = "[email protected]",
description = "CLI tool for manage CircleCI contexts and environment vars",
long_description = long_description,
long_description_content_type = "text/markdown",
license = "MIT",
keywords = "circleci cli api",
url = "https://github.com/phsmith/circleci-env-cli",
py_modules=['circleci_env_cli'],
python_requires='>=3.7',
install_requires=[requirements],
classifiers=[
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
'circleci-env-cli = circleci_env_cli:cli',
],
},
)