forked from cop-discord/expiringdictionary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 795 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
from setuptools import setup
setup(
name="expiringdictionary",
version="0.0.1",
description="a very simple yet very efficient way of making expiring dictionaries and doing ratelimiting",
long_description="...",
long_description_content_type="text/markdown",
url="https://github.com/cop-discord/expiringdictionary",
author="cop-discord",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
"Typing :: Typed",
],
install_requires=['typing'],
python_requires=">=3.6",
)