-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.78 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
from setuptools import find_packages, setup
with open('README.md', 'r', encoding='UTF-8') as f:
readme = f.read()
setup(
name='steam-trader',
version='0.4.0',
author='Lemon4ksan (Bananchiki)',
author_email='senya20151718@gmail.com',
license='BSD License',
url='https://github.com/Lemon4ksan/SteamTrader-Wrapper',
keywords='python steam trader api wrapper library client питон пайтон '
'стим трейдер апи обёртка библиотека клиент',
description='Неофициальная Python библиотека для работы с API сервиса Steam-Trader.',
long_description=readme,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=['httpx', 'beautifulsoup4', 'lxml'],
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Natural Language :: Russian',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Programming Language :: Python',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
python_requires='>=3.12',
project_urls={
'Документация': 'https://lemon4ksan.github.io/steam-trader/',
}
)