-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.23 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
import sys
from setuptools import setup
if sys.version_info < (3, 8):
raise RuntimeError('Your Python version {0} is not supported, please install '
'Python 3.8+'.format('.'.join(map(str, sys.version_info[:3]))))
requirements = ["wheel", "aiohttp>=3.8.5,<3.10.0", "certifi>=2023.7.22", "ujson>=5.8.0", "pytz>=2023.3", "pyrfc3339"]
setup(
name='aioabcpapi',
version='2.1.2',
author='bl4ckm45k',
author_email='[email protected]',
description='Async library for ABCP API',
long_description_content_type="text/markdown",
url="https://github.com/bl4ckm45k/aioabcpapi",
license="MIT",
packages=['aioabcpapi', 'aioabcpapi/cp', 'aioabcpapi/ts', 'aioabcpapi/utils'],
install_requires=requirements,
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Framework :: AsyncIO',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Application Frameworks',
],
python_requires='>=3.8'
)