forked from UGentPortaal/python-mediamosa
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (37 loc) · 1.29 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
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='[email protected]',
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=(
'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'
],
)