-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 839 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
# -*- coding: utf-8 -*-
from setuptools import setup
try:
long_description = open("Readme.md").read()
except IOError:
long_description = """
"""
setup(
name="hayaku",
version="0.1.2",
description="Hayaku - tooling for generating dockerfile",
license="MIT",
author="Alex Myasoedov",
author_email="msoedov@gmail.com",
packages=['.'],
install_requires=['fire', 'pipreqs'],
entry_points={
'console_scripts': ['hayaku=main:main'],
},
long_description=long_description,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
]
)