-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (38 loc) · 1.44 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
#!/usr/bin/env/python
from setuptools import setup, find_packages
import os
if __name__ == "__main__":
with open("README.md", "r") as fh:
long_description = fh.read()
VERSION = os.getenv("GITHUB_PROGRAM_VERSION")
if not VERSION:
raise ValueError("Did not receive version info from GitHub")
setup(
name="robotframework-aprslib",
version=VERSION,
description="Robot Framework keywords for the 'aprslib' Python Library",
long_description=long_description,
long_description_content_type="text/markdown",
author="Joerg Schultze-Lutter",
packages=find_packages(),
author_email="joerg.schultze.lutter@gmail.com",
url="https://github.com/joergschultzelutter/robotframework-aprslib",
include_package_data=True,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Library",
"Topic :: Software Development",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Communications :: Ham Radio",
],
license="GNU General Public License v3 (GPLv3)",
install_requires=["robotframework>=3.2", "aprslib>=0.7.0"],
keywords=["Ham Radio","Amateur Radio", "APRS", "Robot Framework"]
)