-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 1.03 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
from distutils.core import setup
import media_nommer_api
long_description = open('README.rst').read()
setup(
name='media-nommer-api',
version=media_nommer_api.VERSION,
description='Client library for media-nommer.',
long_description=long_description,
author='DUO Interactive, LLC',
author_email='[email protected]',
license='BSD License',
url='http://duointeractive.github.com/media-nommer-api-python/',
platforms=["any"],
provides=['media_nommer_api'],
packages=[
'media_nommer_api',
'media_nommer_api.presets',
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Environment :: Web Environment',
'Topic :: Multimedia :: Video :: Conversion',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)