-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (29 loc) · 1.03 KB
/
setup.py
File metadata and controls
executable file
·31 lines (29 loc) · 1.03 KB
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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='pytelefonipapi',
version='0.0.3', # Hardcoded to avoid issues
description='Python services for convenient work with telefon-ip.ru api',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['pytelefonipapi'],
author='kebrick',
author_email='ruban.kebr@gmail.com',
license='MIT',
project_urls={
'Source': 'https://github.com/kebrick/pytelefonipapi',
'Tracker': 'https://github.com/kebrick/pytelefonipapi/issues',
},
install_requires=['requests', 'pydantic'],
python_requires='>=3.10',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Operating System :: OS Independent',
],
zip_safe=False
)