forked from crucl0/yadm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (41 loc) · 1.12 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
41
42
43
44
45
46
from setuptools import setup
# python setup.py sdist --formats=bztar
version = '2.0.8'
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" Alexander',
author_email='zzz.sochi@gmail.com',
url='https://github.com/zzzsochi/yadm',
license='BSD',
platforms='any',
install_requires=[
'pymongo>=3.7.0',
'zope.dottedname',
'python-dateutil',
'pytz',
'Faker',
],
extras_require={
'asyncio': [
'motor>=2.0.0',
],
'test': [
'pytest',
'pytest-cov',
'coveralls'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Database',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
packages=['yadm', 'yadm.aio', 'yadm.fields', 'yadm.fields.money'],
)