File: setup.py

package info (click to toggle)
python-chartkick 1.0.1%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 140 kB
  • sloc: python: 300; makefile: 11
file content (25 lines) | stat: -rw-r--r-- 671 bytes parent folder | download | duplicates (2)
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
)