-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 918 Bytes
/
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
import setuptools
module_name = "misis_elibrary"
from misis_elibrary import __prog__, __desc__, __version__
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name=__prog__,
version=__version__,
author="Layerex",
author_email="layerex@dismail.de",
description=__desc__,
long_description=long_description,
long_description_content_type="text/markdown",
url=f"https://github.com/Layerex/{__prog__}",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Utilities",
],
py_modules=[module_name],
entry_points={
"console_scripts": [
f"{__prog__} = {module_name}:main",
],
},
install_requires=["requests", "img2pdf", "beautifulsoup4"],
)