This repository was archived by the owner on Oct 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (46 loc) · 1.5 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
49
50
51
52
53
54
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
readme = f.read()
readme = readme.replace(
'(samples/preview.png)',
'(https://github.com/snowwm/freq-table/raw/master/samples/preview.png)', 1)
readme = readme.replace(
'(samples/output.pdf)',
'(https://github.com/snowwm/freq-table/raw/master/samples/output.pdf)', 1)
setup(
name='freq_table',
version='0.2.2',
license='MIT',
description='Make printable tables using http://radioscanner.ru frequency db',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/snowwm/freq_table',
author='Pavel Andreyev',
author_email='snowwontmelt@gmail.com',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Telecommunications Industry',
'Topic :: Printing',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='radio radio-frequency html-table html-generation',
packages=['freq_table'],
include_package_data=True,
entry_points={
'console_scripts': [
'freq_table=freq_table.__main__:main',
],
},
python_requires='>=3',
install_requires=[
'beautifulsoup4',
'mako',
'pyphen',
'pyyaml',
'requests',
],
)