-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 793 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 793 Bytes
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
from pathlib import Path
from setuptools import setup
readme = Path("README.md").read_text()
setup(
name="voidpop",
version="0.1.0",
author="Colin Chan",
author_email="colinchan@lumeh.org",
description="Dummy POP3 server that accepts any login and never has any messages",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/kalgynirae/voidpop",
py_modules=["voidpop"],
python_requires=">=3.8",
install_requires=["trio"],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
entry_points={"console_scripts": ["voidpop=voidpop:main"]},
)