-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (53 loc) · 1.62 KB
/
setup.py
File metadata and controls
57 lines (53 loc) · 1.62 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import sys, os
from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
version = '0.12'
long_description = (
read('README.txt')
+ '\n' +
'Contributors\n'
'************\n'
+ '\n' +
read('docs/CONTRIBUTORS.txt')
+ '\n' +
'Change history\n'
'**************\n'
+ '\n' +
read('docs/CHANGES.txt')
+ '\n' +
'Download\n'
'********\n'
)
setup(name='collective.transcode.daemon',
version=version,
description="Video transcoding daemon",
long_description=long_description,
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Framework :: Twisted',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Multimedia :: Video :: Conversion',
'License :: OSI Approved :: GNU General Public License (GPL)',
],
keywords='video transcoding flv mp4 ogg plone zope twisted',
author='unweb.me',
author_email='we@unweb.me',
url='https://github.com/plumi/collective.transcode.daemon',
license='GPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=['collective', 'collective.transcode'],
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'pycrypto',
'Twisted',
'pyasn1',
],
entry_points="""
# -*- Entry points: -*-
""",
)