-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
41 lines (36 loc) · 1 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""yamldirs - create directories and files (incl. contents) from yaml spec.
"""
import sys
from setuptools import setup, find_packages
classifiers = """\
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Topic :: Software Development :: Libraries
"""
version = '1.1.16'
setup(
name='yamldirs',
version=version,
install_requires=[
'ruamel.yaml'
],
author='Bjorn Pettersen',
author_email='[email protected]',
url='https://github.com/datakortet/yamldirs',
description=__doc__.strip(),
classifiers=[line for line in classifiers.split('\n') if line],
long_description=open('README.rst').read(),
entry_points={
'console_scripts': [
'yamldirs = yamldirs.yamldirs_cmd:main',
]
},
packages=find_packages(),
zip_safe=False,
)