forked from phha/click_config_file
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 761 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
with open('README.rst') as readme:
long_description = readme.read()
setup(
name='click_config_file',
author='Philipp Hack',
author_email='philipp.hack@gmail.com',
url='http://github.com/phha/click_config_file',
version='0.4.2',
license='MIT',
description='Configuration file support for click applications.',
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
py_modules=['click_config_file'],
install_requires=['click >= 6.7', 'configobj >= 5.0.6'],
)