-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
56 lines (50 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
# -*- coding: utf-8 -*-
import io
import re
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
with io.open(path.join(here, "README.md"), "rt", encoding="utf8") as f:
long_description = f.read()
with io.open(path.join(here, "vulcan/__init__.py"), "rt", encoding="utf8") as f:
version = re.search(r"__version__ = \"(.*?)\"", str(f.read()))[1]
setup(
name="vulcan-api",
version=version,
packages=find_packages(),
author="Kacper Ziubryniewicz",
author_email="kapi2289@gmail.com",
description="Nieoficjalne API do dzienniczka elektronicznego UONET+",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["Vulcan", "UONET+", "Dzienniczek+", "API", "e-dziennik", "hebe"],
license="MIT",
url="https://github.com/kapi2289/vulcan-api",
project_urls={"Documentation": "https://vulcan-api.readthedocs.io/"},
python_requires=">=3.6,<4.0",
install_requires=[
"pyopenssl",
"uonet-request-signer-hebe",
"pytz",
"aenum",
"related-without-future",
"aiohttp",
"faust-cchardet",
"aiodns",
"yarl",
],
extras_require={"testing": ["pytest", "python-dotenv"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: Polish",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Education",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)