-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 853 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
#!/usr/bin/env python
from __future__ import print_function
from setuptools import setup, find_packages
import textwrap
setup(
name='cymongo',
version='0.1',
url='',
author='Huang Qiangsheng',
author_email='hqsh@live.cn',
description="Much faster than pymongo.",
long_description=textwrap.dedent(""),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(),
py_modules=('cymongo', ),
install_requires=['numpy', 'pandas']
)