-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
47 lines (39 loc) · 1.46 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import re
from setuptools import setup, find_packages
with open("readme.md", "r") as fh:
long_description = fh.read()
_version_regex = (
r"^__version__ = ('|\")((?:[0-9]+\.)*[0-9]+(?:\.?([a-z]+)(?:\.?[0-9])?)?)\1$"
)
try:
with open("cooldowns/__init__.py") as stream:
match = re.search(_version_regex, stream.read(), re.MULTILINE)
version = match.group(2)
except FileNotFoundError:
version = "0.0.0"
def parse_requirements_file(path):
with open(path) as fp:
dependencies = (d.strip() for d in fp.read().split("\n") if d.strip())
return [d for d in dependencies if not d.startswith("#")]
setup(
name="function-cooldowns",
version=version,
author="Skelmis",
author_email="[email protected]",
description="A simplistic decorator based approach to rate limiting function calls.",
long_description=long_description,
long_description_content_type="text/markdown",
project_urls={
"Issue tracker": "https://github.com/Skelmis/Function-Cooldowns/issues",
"Documentation": "https://function-cooldowns.readthedocs.io/en/latest/",
"Homepage": "https://github.com/Skelmis/Function-Cooldowns",
},
packages=find_packages(include=("cooldowns", "cooldowns.*")),
install_requires=[],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
)