forked from sakal/aiomongo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (34 loc) · 1.35 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
import sys
from setuptools import setup
if sys.version_info < (3, 6, 0):
raise RuntimeError('aiomongo requires Python 3.6.0+')
install_requires = ['pymongo==3.5']
tests_require = install_requires + ['pytest', 'pytest-asyncio'],
setup(
name='aiomongo',
version='0.1',
description='Asynchronous Python driver for MongoDB <http://www.mongodb.org>',
author='Dmytro Domashevskyi',
author_email='domash@zeoalliance.com',
url='https://github.com/ZeoAlliance/aiomongo',
keywords=['mongo', 'mongodb', 'pymongo', 'aiomongo'],
packages=['aiomongo'],
install_requires=install_requires,
license='Apache License, Version 2.0',
include_package_data=True,
tests_require=tests_require,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Database']
)