|
3 | 3 | from setuptools import setup |
4 | 4 |
|
5 | 5 |
|
6 | | -VERSION = '0.3.4' |
| 6 | +VERSION = '0.4.0' |
7 | 7 | ROOT_DIR = os.path.dirname(__file__) |
8 | 8 |
|
9 | 9 | REQUIREMENTS = [ |
|
20 | 20 | packages=['logtail'], |
21 | 21 | include_package_data=True, |
22 | 22 | license='ISC', |
23 | | - description='Logtail.com client library', |
| 23 | + description='Better Stack client library', |
24 | 24 | long_description=long_description, |
25 | 25 | long_description_content_type='text/markdown', |
26 | 26 | url='https://github.com/logtail/logtail-python', |
27 | 27 | download_url='https://github.com/logtail/logtail-python/tarball/%s' % (VERSION), |
28 | 28 | keywords=['api', 'logtail', 'logging', 'client'], |
29 | 29 | install_requires=REQUIREMENTS, |
| 30 | + python_requires='>=3.10', |
30 | 31 | author='Logtail', |
31 | 32 | author_email='hello@logtail.com', |
32 | 33 | classifiers=[ |
33 | 34 | 'Intended Audience :: Developers', |
34 | 35 | 'License :: OSI Approved :: ISC License (ISCL)', |
35 | 36 | 'Operating System :: OS Independent', |
36 | 37 | 'Programming Language :: Python :: 3', |
37 | | - 'Programming Language :: Python :: 3.7', |
38 | | - 'Programming Language :: Python :: 3.8', |
39 | | - 'Programming Language :: Python :: 3.9', |
40 | 38 | 'Programming Language :: Python :: 3.10', |
41 | 39 | 'Programming Language :: Python :: 3.11', |
| 40 | + 'Programming Language :: Python :: 3.12', |
| 41 | + 'Programming Language :: Python :: 3.13', |
| 42 | + 'Programming Language :: Python :: 3.14', |
42 | 43 | 'Programming Language :: Python', |
43 | 44 | 'Topic :: Software Development :: Libraries :: Python Modules', |
44 | 45 | ], |
|
0 commit comments