-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.17 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
from os import path
from setuptools import setup
import version
long_description = """
A package for managing configuration files in Python applications
depending on environment (development, test, production), using Convention
Over Configuration principle.
"""
setup(name='config-py',
description='A Python package for managing configuration files in your apps',
long_description=long_description,
version=version.__version__,
url='https://github.com/pavloo/config_py',
author='Pavlo Osadchyi',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
packages=[
'config_py',
'config_py.bin',
'config_py.lib',
'config_py.fixtures',
'version'
],
include_package_data=True,
install_requires=[
'click>=6.7'
],
entry_points={
'console_scripts': [
'config_py=config_py.bin.config_py:config_py'
]
}
)