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
|
from setuptools import setup
import ratelimit
def readme():
'''Read README file'''
with open('README.rst') as infile:
return infile.read()
setup(
name='ratelimit',
version=ratelimit.__version__,
description='API rate limit decorator',
long_description=readme().strip(),
author='Tomas Basham',
author_email='me@tomasbasham.co.uk',
url='https://github.com/tomasbasham/ratelimit',
license='MIT',
packages=['ratelimit'],
install_requires=[],
keywords=[
'ratelimit',
'api',
'decorator'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Software Development'
],
include_package_data=True,
zip_safe=False
)
|