forked from gyli/PyWaffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.27 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
37
38
39
40
41
42
#!/usr/bin/python
# -*-coding: utf-8 -*-
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open('README_pypi.rst') as f:
long_description = f.read()
setup(
name="pywaffle",
version="0.2.1",
description="A FigureClass of Matplotlib to make waffle chart.",
keywords="matplotlib waffle chart pie plot data visualization",
long_description=long_description,
license='MIT',
author="Guangyang Li",
author_email="[email protected]",
url="https://github.com/ligyxy/PyWaffle",
packages=['pywaffle', 'font'],
install_requires=['matplotlib'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
package_data={
'font': [
'Font Awesome 5 Brands-Regular-400.otf',
'Font Awesome 5 Free-Regular-400.otf',
'Font Awesome 5 Free-Solid-900.otf'
]
},
include_package_data=True
)