forked from artsy/hokusai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.36 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
import os
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='hokusai',
version=open(os.path.join(os.path.dirname(__file__), "hokusai", "VERSION")).read().strip(),
description='Artsy Docker development toolkit',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/artsy/hokusai',
author='Isac Petruzzi',
author_email='isac@artsymail.com',
license='MIT',
packages=['hokusai'],
package_data={
'hokusai': [
'cli/*',
'commands/*',
'lib/*',
'services/*',
'templates/*',
'templates/hokusai/*',
'VERSION'
]
},
install_requires=[
'click~=6.7',
'click-repl~=0.1',
'prompt-toolkit~=1.0.15',
'MarkupSafe~=1.0',
'Jinja2~=2.10',
'packaging~=18.0',
'PyYAML~=3.12',
'termcolor~=1.1',
'boto3~=1.4',
'botocore~=1.12'
],
zip_safe=False,
include_package_data = True,
scripts = ['bin/hokusai'])