Files
prosto-sms-python/setup.py
T
chydo aac0458437 fixed: error with data
moved: api to init
updated: version up to 0.0.2
2024-04-05 01:50:12 +07:00

27 lines
694 B
Python

from setuptools import setup
with open('requirements.txt') as f:
requirements = list(map(lambda x: x.strip(), f.readlines()))
setup(
name='prosto_sms',
version='0.0.2',
author='Alex Dennitsev',
author_email='me@chydo.dev',
url="https://github.com/exituser/prosto-sms-python",
description='sms-prosto api wrapper written in python',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=['prosto_sms'],
install_requires=requirements,
classifiers=[
'Environment :: Web Environment',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.11'
]
)