-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (36 loc) · 1.12 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
43
44
45
46
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='okerr-cat',
version='0.0.1',
description='Demo website (simulating failures) for Okerr project',
url='https://github.com/yaroslaff/okerr-cat',
author='Yaroslav Polyakov',
author_email='yaroslaff@gmail.com',
license='GPL',
packages = ['okerrcat', 'okerrcat.templates'],
#packages=[
# 'okerrcat',
# ],
# scripts=['bin/locker-server.py'],
# include_package_data=True,
long_description = read('README.md'),
long_description_content_type='text/markdown',
install_requires=[
'flask',
'dnspython',
'requests'],
data_files = [
('contrib', [
'contrib/okerr-cat.service',
'contrib/okerr-cat.nginx',
'contrib/okerr-cat.default']),
('.', [
'wsgi.py',
'okerr-cat.ini'
])
],
include_package_data = True,
zip_safe=True
)