-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·47 lines (38 loc) · 1.33 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
44
45
46
47
import os
from setuptools import setup, find_packages
version = "1.3"
description = (
'Konf is a Python package which designed to simplify the use of variables in configuration files. '
'YAML and JSON file formats support out of the box.'
)
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
long_description = read('README.rst')
install_requires=['PyYAML', 'good']
setup(
name='konf',
author="Vladimir Chub",
author_email="vartagg@users.noreply.github.com",
url='http://github.com/vartagg/konf/',
description=description,
long_description=long_description,
keywords="konf,json,yaml,config",
license="BSD",
version=version,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
packages=find_packages(),
package_data = {'': ['testing/assets/*.json', 'testing/assets/*.yml']},
install_requires=install_requires,
tests_require=['nose'],
test_suite='nose.collector',
entry_points={},
)