-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.35 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
import os.path
from setuptools import setup
here = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(here, 'README.md')) as f:
long_description = f.read()
setup(
name='redbucket',
use_scm_version=True,
license="MIT License",
description="Python rate limiting library using Redis for shared state.",
author="Nicholas Gaya",
author_email="nicholasgaya+pypi@gmail.com",
url="https://github.com/nickgaya/redbucket",
long_description=long_description,
long_description_content_type='text/markdown',
packages=["redbucket"],
package_data={'redbucket': ['py.typed']},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
],
setup_requires=[
'setuptools_scm',
],
python_requires='~=3.6',
install_requires=[
'redis~=3.0',
],
# Ensure MyPy can detect the py.typed file
# https://mypy.readthedocs.io/en/latest/installed_packages.html
zip_safe=False,
)