-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
40 lines (38 loc) · 1.14 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
from setuptools import setup
description = "Channel import and export tool for the BC125AT, UBC125XLT and UBC126AT."
try:
# Convert from Markdown to reStructuredText (supported by PyPi).
import os
import pypandoc
readme = os.path.join(os.path.dirname(__file__), "README.md")
long_description = pypandoc.convert(readme, 'rst')
except:
long_description = description
setup(
name = "bc125csv",
version = "1.0.2",
url = "http://github.com/fdev/bc125csv/",
download_url = "http://github.com/fdev/bc125csv/tarball/master",
license = "MIT",
description = description,
long_description = long_description,
author = "Folkert de Vries",
author_email = "[email protected]",
packages = ["bc125csv"],
install_requires = ["pyudev", "pyserial"],
entry_points="""
[console_scripts]
bc125csv = bc125csv:main
""",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Unix",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Communications :: Ham Radio",
]
)