forked from crucl0/yadm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (25 loc) · 841 Bytes
/
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
from setuptools import setup
# python setup.py sdist --formats=bztar
version = '0.5'
description = 'Yet Another Document Mapper (ODM) for MongoDB'
long_description = open('README.rst', 'rb').read().decode('utf8')
setup(
name='yadm',
version=version,
description=description,
long_description=long_description,
author='Zelenyak "ZZZ" Aleksander',
author_email='[email protected]',
url='https://github.com/zzzsochi/yadm',
license='BSD',
platforms='any',
install_requires=['pymongo', 'zope.dottedname'],
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Database',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
packages=['yadm', 'yadm.fields'],
)