-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (35 loc) · 1011 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
32
33
34
35
36
37
38
39
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
p_version = "0.1.0"
with open("README.md", 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name="dkc-api",
version=p_version,
author="Alexandr Drachenin",
author_email="[email protected]",
packages=find_packages(),
url="https://github.com/Blackgard/dkc-api",
download_url="https://github.com/Blackgard/dkc-api/tarball/v{0}".format(
p_version
),
license="MIT",
description="Connector for connecting via api to DKC. Allows you to easily retrieve product and news data.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=[
"python",
"dkc",
"api",
"connector",
"loader"
],
install_requires=[
"loguru==0.5.3",
"requests==2.26.0",
"pydantic==1.8.2",
"pytz==2021.1",
"python-dotenv==0.19.0"
],
python_requires='>=3.9'
)