forked from opencast/pyCA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 971 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
32
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
import os
path = os.path.abspath(os.path.dirname(__file__))
def read(filename):
with open(os.path.join(path, filename), encoding='utf-8') as f:
return f.read()
setup(
name="pyca",
version="4.5",
description="Opencast Capture Agent",
author="Lars Kiesow",
author_email='[email protected]',
license="LGPLv3",
url="https://github.com/opencast/pyCA",
long_description=read('README.rst'),
long_description_content_type='text/x-rst',
packages=find_packages(),
include_package_data=True,
install_requires=[
"pycurl>=7.19.5",
"python-dateutil>=2.4.0",
"configobj>=5.0.0",
"sqlalchemy>=0.9.8",
"sdnotify>=0.3.2",
"psutil>=5.0.1",
"flask>=0.12.2",
"prometheus_client>=0.9"
],
entry_points={
'console_scripts': [
'pyca = pyca.__main__:main'
]
},
test_suite="tests",
)