-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
36 lines (34 loc) · 1.1 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
from setuptools import setup
with open('README.md', encoding='utf8') as f:
long_description = f.read()
setup(
name='chart',
version='0.2.3',
description='chart',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Topic :: Artistic Software',
'Topic :: Multimedia :: Graphics',
'Topic :: Scientific/Engineering :: Visualization',
],
keywords=[
'chart', 'plot', 'graph', 'print',
'visualize', 'visualization', 'vis',
'bar', 'histogram', 'scatter'
],
url='/~https://github.com/maxhumber/chart',
author='Max Humber',
author_email='max.humber@gmail.com',
license='MIT',
packages=['chart'],
python_requires='>=3.6',
setup_requires=['setuptools>=38.6.0']
)