-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
57 lines (55 loc) · 1.8 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
54
55
56
57
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
setup(
name="confluence_poster",
version="1.4.4",
description="Script that updates Confluence articles from files written locally",
long_description=(here / "README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
url="https://github.com/VTimofeenko/confluence_poster",
license="MIT",
author="Vladimir Timofeenko",
author_email="[email protected]",
include_package_data=True,
package_data={"confluence_poster": ["config.toml"]},
packages=find_packages(exclude=("tests", "docs")),
package_dir={"confluence_poster": "confluence_poster"},
entry_points={
"console_scripts": ["confluence_poster = confluence_poster.main:app"]
},
install_requires=[
"atlassian-python-api==3.11.0",
"typer>=0.3.2",
"toml",
"requests",
"pyxdg>=0.26",
"tomlkit==0.7.2",
"click>=7.1.1, <7.2.0",
"markdown==3.3.4",
],
python_requires=">=3.8, <4",
tests_require=[
"pytest",
"pytest-cov",
"faker",
"beautifulsoup4==4.9.3",
"bs4",
"lxml",
"marshmallow>=3.12.1",
],
extras_require={"docs": ["jinja2", "typer-cli"]},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Topic :: Utilities",
"Topic :: Text Processing",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
],
keywords="confluence api vim",
project_urls={
"Bug Reports": "https://github.com/VTimofeenko/confluence_poster/issues",
"Source": "https://github.com/VTimofeenko/confluence_poster/",
},
)