forked from veeso/ATtila
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (44 loc) · 1.55 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
45
46
47
48
#!/usr/bin/python3
from setuptools import find_packages, setup
from pathlib import Path
# The directory containing this file
ROOT = Path(__file__).parent
README = (ROOT / "README.pypi.md").read_text(encoding="utf-8")
setup(
name="attila",
version="1.2.1",
description="Python module to communicate easily with modems and RF modules using AT commands",
long_description=README,
long_description_content_type="text/markdown",
author="Christian Visintin",
author_email="[email protected]",
url="https://github.com/veeso/ATtila",
license="MIT",
python_requires=">=3.5",
include_package_data=True,
install_requires=["pyserial>=3", "pathlib2>=2"],
entry_points={"console_scripts": ["attila = attila.__main__:main"]},
packages=find_packages(exclude=("tests",)),
keywords=[
"AT commands",
"IOT",
"wireless",
"radio frequency",
"modem",
"rf modules",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: End Users/Desktop",
"Topic :: Software Development :: Libraries",
"Topic :: Home Automation",
"Topic :: Communications :: Telephony",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
],
)