-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (24 loc) · 845 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
import os
import setuptools
setuptools.setup(
name="triarc",
version="0.2.4-pre6",
author="Gustavo Ramos Rehermann",
author_email="[email protected]",
license="COIL",
description="A trio library for automating responses to commands (bots) and the like. Ships with an IRC backend.",
keywords="bot network async trio irc",
install_requires=open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
.read()
.strip()
.split("\n"),
readme="description.md",
packages=["triarc", "triarc.backends", "triarc.mutators"],
classifiers=[
"Framework :: Trio",
"Topic :: System :: Networking",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Communications",
],
)