-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·33 lines (32 loc) · 889 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
30
31
32
33
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='dfe',
version='0.1.0',
description='Dockerfile Expand',
long_description=open('README.md').read(),
keywords='dockerfile, template, render, expand',
author='Slavek Kabrda',
author_email='[email protected]',
url='https://github.com/bkabrda/dfe',
license='BSD',
packages=['dfe'],
platforms='any',
install_requires=[
'Jinja2',
'PyYAML',
],
entry_points={
'console_scripts': ['dfe=dfe.bin:main'],
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Software Development',
]
)