-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (42 loc) · 1.57 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
# -*- coding: utf-8 -*-
from os import path
from setuptools import setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='yaml-injection',
version_format='{tag}',
setup_requires=['setuptools-git-version'],
description='pyyaml loader. '
'With this loader you can inject (include) other yaml files '
'either from local file system '
'or from public web '
'or from already constructed sections of the yaml.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Grigorii Koksharov',
author_email='[email protected]',
url='https://github.com/oztqa/yaml-injection',
py_modules=['yaml_injection'],
install_requires=[
'pyyaml',
'requests',
],
keywords='yaml pyyaml include extend inject',
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Utilities',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
],
)