-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 881 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
27
28
29
30
from setuptools import setup, find_packages
DESCRIPTION = 'Another Python package aim to offer "Rate Limiting" functionality for general use cases.'
# python3 setup.py sdist bdist_wheel
# twine upload --skip-existing dist/* --verbose
VERSION = '0.0.6.5'
setup(
name='pygrl',
version=VERSION,
packages=find_packages(),
description=DESCRIPTION,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='jonah_whaler_2348',
author_email='[email protected]',
license='MIT',
install_requires=[],
keywords=[
'python', 'rate', 'limiter', 'rate limiter', 'rate limiting'
],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
]
)