-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 831 Bytes
/
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
"""Pycslog is a client-server ham radio contest logger."""
from setuptools import setup
setup(
name='pycslog',
version='0.0.1',
description='Client-Server Ham Radio Contest Logger',
url='http://github.com/neilmb/pycslog',
author='Neil Martinsen-Burrell N0FN',
author_email='[email protected]',
license='GPL',
packages=['pycslog'],
zip_safe=False,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Framework :: Flask",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Topic :: Communications :: Ham Radio",
],
install_requires=[
'flask',
],
test_require=[
'nose',
'rednose',
],
)