forked from vishnevskiy/conjure
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (33 loc) · 974 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
29
30
31
32
33
34
35
36
37
38
from setuptools import find_packages, setup
DESCRIPTION = (
"A MongoDB object mapper inspired by Django models and SQLAlchemy's pythonic DSL."
)
with open("README") as f:
LONG_DESCRIPTION = f.read()
VERSION = "0.1.2"
CLASSIFIERS = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
]
setup(
name="conjure",
version=VERSION,
packages=find_packages(),
author="Stanislav Vishnevskiy",
author_email="[email protected]",
url="https://github.com/vishnevskiy/conjure",
license="MIT",
include_package_data=True,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
install_requires=[
"pymongo==3.10.1",
"python-dateutil==2.8.1",
],
platforms=["any"],
classifiers=CLASSIFIERS,
test_suite="tests",
)