-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
35 lines (33 loc) · 1.15 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
import pathlib
from setuptools import setup
setup(
name="joppy",
version="1.0.0",
packages=["joppy"],
# https://stackoverflow.com/a/70386281/7410886
package_data={
"joppy": ["py.typed"],
},
description="Python API for Joplin",
long_description=(pathlib.Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
url="https://github.com/marph91/joppy",
author="Martin Dörfelt",
author_email="[email protected]",
license="Mozilla Public License version 2.0",
# https://pypi.org/classifiers
classifiers=[
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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 :: 3.12",
"Typing :: Typed",
],
python_requires=">=3.7",
install_requires=["requests"],
)