forked from grafnu/forch_orig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (37 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
35
36
37
38
39
40
41
42
43
import os
import setuptools
def get_http_files():
file_list = []
for file in os.listdir('public'):
file_list.append(os.path.join('public', file))
return file_list
data_files = []
data_files.append(('forch/public', get_http_files()))
package_data = {'': ['GVERSION']}
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="forch",
version="1.0",
description="Faucet orchestrator",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
package_data=package_data,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Debian",
],
python_requires='>=3.6',
install_requires=[
'google-cloud',
'prometheus_client',
'protobuf',
'psutil',
'pyyaml',
'requests'
],
data_files=data_files,
scripts=['bin/forch']
)