-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
55 lines (51 loc) · 1.82 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
48
49
50
51
52
53
54
55
import os
from setuptools import setup, find_packages
from importlib.machinery import SourceFileLoader
module = SourceFileLoader(
"bucketratelimiter", os.path.join("bucketratelimiter", "version.py")
).load_module()
setup(
name=module.__name__,
version=module.__version__,
author=module.__author__,
author_email=module.author_email,
license=module.package_license,
description=module.package_info,
long_description_content_type="text/markdown",
long_description=open("README.md").read(),
platforms="all",
classifiers=[
"License :: OSI Approved :: GNU Affero General Public License v3",
"Topic :: Internet",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Microsoft",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
],
packages=find_packages(exclude=["tests", "examples"]),
package_data={"bucketratelimiter": ["py.typed"]},
install_requires=[],
python_requires=">=3.6, <4",
extras_require={
"develop": [
"mypy",
"pytest-cov",
"pytest-asyncio",
],
},
project_urls={
"Documentation": "https://github.com/ArtyomKozyrev8/BucketRateLimiter/",
"Source": "https://github.com/ArtyomKozyrev8/BucketRateLimiter/",
},
)