forked from MikeSmithEU/python-mediamosa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (38 loc) · 1.28 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
from setuptools import setup
with open("README.rst", "r") as file:
long_desc = file.read()
version = __import__("mediamosa").get_version()
setup(
name="mediamosa",
version=version,
author="UGent Portaal Team",
author_email="portaal-tech@ugent.be",
packages=["mediamosa", "tests"],
scripts=[],
url="https://github.com/UGentPortaal/python-mediamosa",
license="BSD",
description="A high-level API interface for MediaMosa.",
long_description=long_desc,
install_requires=(
"PySocks>=1.7.1",
"requests>=1.0.3",
"MiniMock>=1.2.7",
),
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Multimedia :: Video",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
)