-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (38 loc) · 1.48 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
import setuptools
SHORT_DESCRIPTION = """
Nocnus is a basic Pymongo wrapper for quickly implementing CRUD MongoDB operations.
""".strip()
LONG_DESCRIPTION = """
Nocnus is a simple Python library built on top of Pymongo to simplify just the
basic MongoDB CRUD operations and save some DB setup time.
Why the name Nocnus?
Ocnus is the name of the greek god of delays and frustrations and we
do not want any any of those in implementing basic CRUD MongoDB operations
thus the name. (No Ocnus => Nocnus)
Kindly check out the complete documentation at: https://github.com/bluedistro/Nocnus
""".strip()
setuptools.setup(
author="Kingsley Biney",
author_email="[email protected]",
name="Nocnus",
license="MIT",
description=SHORT_DESCRIPTION,
version="v0.0.7",
long_description=LONG_DESCRIPTION,
url="https://github.com/bluedistro/Nocnus",
packages=setuptools.find_packages(),
python_requires=">=3.5",
install_requires=['pymongo'],
classifiers=[
# Trove classifiers
# (https://pypi.python.org/pypi?%3Aaction=list_classifiers)
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
],
)