forked from janluke/cloup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 1.31 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('CHANGELOG.rst') as history_file:
history = history_file.read()
setup(
# Name, author, description and other info
name='cloup',
version='0.4.2',
author="Gianluca Gippetto",
author_email='[email protected]',
description="Option groups and subcommand help sections for pallets/click",
long_description=readme + '\n\n' + history,
long_description_content_type='text/x-rst',
url='https://github.com/janLuke/cloup',
license="MIT license",
keywords='cloup click option',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=find_packages(include=['cloup', 'cloup.*']),
zip_safe=False,
include_package_data=True,
python_requires='>=3.5',
install_requires=[
'click>=7.0,<9.0'
],
)