-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
60 lines (56 loc) · 1.65 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
58
59
60
import setuptools
with open("README.md", "r", encoding="utf-8") as f:
long_desc = f.read()
name = "htmlwebshot"
version = "v0.1.2"
author = "1Danish-00"
author_email = "[email protected]"
desc = "Create Web Preview Images From url, Html-CSS ,svg, any other readable file or string."
lic = "GNU AFFERO aa rha posts GENERAL PUBLIC LICENSE (v3)"
url = "https://github.com/1Danish-00/htmlwebshot/"
project_urls = {
"Bug Tracker": "https://github.com/1Danish-00/htmlwebshot/issues",
}
reqs = ["asyncio"]
keys = [
"screenshot",
"Webshot",
"url to image",
"html to image",
"css to image",
"svg to image",
"text to image",
"file to image",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Text Processing",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Markup",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Text Processing :: Markup :: XML",
"Topic :: Utilities",
]
setuptools.setup(
name=name,
version=version,
author=author,
author_email=author_email,
description=desc,
long_description=long_desc,
long_description_content_type="text/markdown",
url=url,
project_urls=project_urls,
license=lic,
keywords=keys,
packages=setuptools.find_packages(),
install_requires=reqs,
classifiers=classifiers,
python_requires=">=3.5",
)