-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
125 lines (98 loc) · 2.64 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#!/usr/bin/env python
"""
SixIsles
========
PyMongo Based ActiveRecord Pattern O/R Mapper
--------------
Dependencies
------------
- Python2.6 or Later
- PyMongo >= 3.1.1
Installation
------------
.. code:: bash
$ pip install SixIsles
Example
-------
Add Github Repository Documents
.. code:: python
from sixIsles import Structure, Document, get_client
from sixIsles.types import ObjectId, String
class Repository(Document):
struct = Structure(
_id = ObjectId(),
name = String(),
author = String(),
url = String()
)
class Meta:
database = get_client("test_db_name", "localhost")
document = Repository()
document.name = "SixIsles"
document.author = "teitei-tk"
document.url = "https://github.com/teitei-tk/SixIsles"
document.insert()
or
document = Repository({
"name": "SixIsles",
"author": "teitei-tk",
"url": "https://github.com/teitei-tk/SixIsles"
})
document.insert()
.. code:: bash
$ mongo
.....
.....
> use test_db_name
switched to db test_db_name
> show collections;
repository
system.indexes
> db.repository.find()
{ "_id" : ObjectId("565895aacc7474890284fc8d"), "url" : "https://github.com/teitei-tk/SixIsles", "name" : "SixIsles", "author" : "teitei-tk" }
>
TODO
----
- [ ] Add TestCode
- [ ] Update README
- [ ] Register CI Tools
License
-------
- MIT
"""
try:
import setuptools
from setuptools import setup, find_packages
except ImportError:
import sys
print("Please install setuptools.")
sys.exit(1)
import versions
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: Database',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development :: Libraries',
]
setup(
name='SixIsles',
version=versions.VERSIONS,
description='PyMongo Based ActiveRecord Pattern O/R Mapper',
long_description=__doc__,
author='teitei-tk',
author_email='[email protected]',
url='https://github.com/teitei-tk/SixIsles',
packages=find_packages(),
include_package_data=True,
license='MIT',
classifiers=classifiers,
install_requires=open('requirements.txt').read().splitlines(),
keywords=['orm', 'ormapper', 'o/r mapper', 'PyMongo', 'MongoDB'],
download_url='https://github.com/teitei-tk/SixIsles/archive/master.zip'
)