-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 848 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
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
readme = f.read()
setup(
name='cli3',
version='1.2.3',
license='MIT',
packages=find_packages(),
url='https://github.com/imgurbot12/cli',
author='Andrew Scott',
author_email='[email protected]',
description=(
'A highly configurable, dynamic, fast, and easy '
'solution to managing a command-line application.'
),
python_requires='>=3.7',
long_description=readme,
long_description_content_type="text/markdown",
install_requires=[
'jinja2>=3.1.2',
'pyderive3>=0.0.6',
'typing_extensions>=4.7.1',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)