-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·40 lines (35 loc) · 1.13 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·40 lines (35 loc) · 1.13 KB
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
from setuptools import setup, find_packages
__version__ = "0.1.4"
with open("README.md", "r", encoding="UTF-8") as file:
long_description = file.read()
requires_list = [
"aiohttp>=3.8.0",
"beautifulsoup4>=4.8.0",
"lxml>=5.0.0",
"SQLAlchemy>=2.0.0",
"pyspellchecker>=0.7.0"
]
setup(
name="asyncwiki",
version=__version__,
author="Vyacheslav Pervakov",
author_email="WsrrcalzWehgwmD@protonmail.com",
description="Asynchronous work with Wikipedia for asyncio and Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/FailProger/asyncwiki.git",
project_urls={
"GitHub": "https://github.com/FailProger/asyncwiki.git",
"PyPI": "https://pypi.org/project/asyncwiki/"
},
license="MIT License",
license_file="LICENSE",
keywords=["Python", "asynchronous", "asyncio", "aiohttp", "Wikipedia"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
],
packages=find_packages(),
python_requires = ">=3.9",
install_requires=requires_list
)