-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathsetup.py
47 lines (45 loc) · 1.36 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
43
44
45
46
47
# coding=utf-8
from setuptools import setup, find_packages
setup(
name='reportgen',
version='0.1.8',
description=(
'reportgen is a Python library for creating and updating analysis report.'
),
long_description=open('README.rst').read(),
author='JSong',
author_email='[email protected]',
maintainer='JSong',
maintainer_email='[email protected]',
license='BSD License',
packages=find_packages(),
include_package_data=True,
# relative to the vfclust directory
package_data={
'images':[
'logo.png'],
'template':
['template.pptx'],
'font':['readme.txt','DroidSansFallback.ttf']
},
platforms=["all"],
url='https://github.com/gasongjian/reportgen',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries'
],
install_requires=[
'pandas',
'numpy',
'seaborn',
'python-pptx',
'Pillow'
]
)