-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 845 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 845 Bytes
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
# pylint: skip-file
from pathlib import Path
from setuptools import setup
HERE = Path(__file__).resolve().parent
README = (HERE / "README.rst").read_text()
setup(
name = "gocomics.py",
version = "2.1.0",
description = "Fetch comics from GoComics.",
long_description = README,
long_description_content_type = "text/x-rst",
url = "https://github.com/Ombucha/gocomics.py",
author = "Omkaar",
author_email = "omkaar.nerurkar@gmail.com",
license = "MIT",
classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
python_requires='>= 3.8.0',
packages = ["gocomics"],
include_package_data = True,
install_requires = ["beautifulsoup4", "requests"]
)