-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 782 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
# https://setuptools.readthedocs.io/en/latest/
setup(
name="logserver",
version="0.1.0",
description="A simple socket-based log server based on the Python logging cookbook.",
long_description=open("README.md", "rt").read(),
url="https://github.com/luismsgomes/logserver",
author="Luís Gomes",
author_email="luismsgomes@gmail.com",
license="GPLv3",
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.8",
],
keywords="logging util",
install_requires=[],
package_dir={"": "."},
py_modules=["logserver"],
)