-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 903 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 903 Bytes
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
from setuptools import setup
setup(
name='SpreadFlowFormatBSON',
version='0.0.1',
description='BSON message interchange format for SpreadFlow metadata extraction and processing engine.',
author='Lorenz Schori',
author_email='lo@znerol.ch',
url='https://github.com/znerol/spreadflow-format-bson',
packages=[
'spreadflow_format_bson',
'spreadflow_format_bson.test'
],
install_requires=[
'pymongo'
],
test_suite="spreadflow_format_bson.test",
zip_safe=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Twisted',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Multimedia'
],
)