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
|
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name='chartkick',
version='1.0.1',
description='Create beautiful JavaScript charts with one line of Python',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ankane/chartkick.py',
author='Andrew Kane',
author_email='andrew@ankane.org',
license='MIT',
packages=[
'chartkick',
'chartkick.django',
'chartkick.flask'
],
include_package_data=True,
python_requires='>=3.7',
install_requires=[],
zip_safe=False
)
|