-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
27 lines (25 loc) · 886 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
from setuptools import setup
with open('README.rst') as readme:
long_description = readme.read()
setup(
name='click_config_file',
author='Philipp Hack',
author_email='[email protected]',
url='http://github.com/phha/click_config_file',
version='0.6.0',
license='MIT',
description='Configuration file support for click applications.',
long_description=long_description,
long_description_content_type='text/x-rst',
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'],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'twine'],
)