-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
53 lines (48 loc) · 1.46 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
"""
A setuptools based setup module.
"""
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
description = "Notion to YAML"
setup(
name="n2y",
version="0.10.2",
description=description,
long_description=description,
long_description_content_type="text/x-rst",
url="https://github.com/innolitics/n2y",
author="Innolitics, LLC",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
keywords="notion documentation yaml markdown",
packages=find_packages(exclude=["tests"]),
install_requires=["pyyaml", "requests", "pandoc", "jinja2"],
extras_require={
"dev": [
"pytest",
"flake8",
"check-manifest",
"requests-cache",
]
},
include_package_data=True,
package_data={"n2y": ["data/mermaid_err.png"]},
entry_points={
"console_scripts": [
"n2y = n2y.main:cli_main",
"n2yaudit = n2y.audit:cli_main",
]
},
)