-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (26 loc) · 879 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
from setuptools import setup
import pyconf
try:
readme = open('README.md').read()
except:
readme = 'pyconf: Configuration for Humans. Support ini config file, python config file, yaml config file'
setup(
name=pyconf.__title__,
version=pyconf.__version__,
author=pyconf.__author__,
description='Configuration for humans',
long_description=readme,
author_email='[email protected]',
url='https://github.com/Microndgt/pyconf',
packages=['pyconf'],
package_dir={'pyconf': 'pyconf'},
package_data={'pyconf': ['*.conf']},
include_package_data=True,
license=pyconf.__license__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3']
)