-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.01 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
"""
Project: Shinigami (https://github.com/battleoverflow/shinigami)
Author: battleoverflow (https://github.com/battleoverflow)
License: BSD 2-Clause
"""
import setuptools
with open("README.md", "r", encoding = "utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name = "shinigami",
version = "0.2.1",
author = "battleoverflow",
description = "Shinigami is an open source Python library allowing the user to generate and build Dockerfiles during runtime",
long_description = long_description,
long_description_content_type = "text/markdown",
py_modules=['shinigami'],
url = "https://github.com/battleoverflow/shinigami",
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
install_requires=[
"argparse",
"faye"
],
entry_points={
'console_scripts': ["shinigami=shinigami:CLI.run"]
},
python_requires = ">=3.6"
)