-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (39 loc) · 1.63 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
43
44
"""YesssSMS let's you send SMS via yesss.at's website."""
import json
from setuptools import find_packages, setup
DESC = "YesssSMS let's you send SMS via yesss.at's website."
VERSION = json.loads(open("YesssSMS/version.json").read())["version"]
with open("README.md", "r") as fh:
LONG_DESC = fh.read()
setup(
name="YesssSMS",
version=VERSION,
description=DESC,
long_description=LONG_DESC,
long_description_content_type="text/markdown",
url="https://gitlab.com/flowolf/yessssms",
author="Florian Klien",
author_email="[email protected]",
license="MIT",
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Communications :: Telephony",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
platforms="any",
keywords=["SMS", "Yesss", "messaging"],
packages=find_packages(exclude=["contrib", "docs", "tests", "logo"]),
# List run-time dependencies here. These will be installed by pip
install_requires=["requests", "beautifulsoup4"],
python_requires=">=3.8",
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
entry_points={"console_scripts": ["yessssms=YesssSMS.CLI:run"]},
package_data={"YesssSMS": ["version.json"]},
)