-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
40 lines (36 loc) · 1.29 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
from setuptools import setup
def get_description():
with open("README.md") as file:
return file.read()
setup(
name="Mongo-Thingy",
version="0.17.2",
url="https://github.com/Refty/mongo-thingy",
license="MIT",
author="Guillaume Gelin",
author_email="[email protected]",
description=(
"The most idiomatic and friendly-yet-powerful way to use " "MongoDB with Python"
),
long_description=get_description(),
long_description_content_type="text/markdown",
packages=["mongo_thingy"],
include_package_data=True,
zip_safe=False,
platforms="any",
install_requires=["thingy>=0.10.0", "pymongo>=4.6.3"],
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Database",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)