-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
43 lines (39 loc) · 1.34 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
#!/usr/bin/env python3
from os import path
from setuptools import find_packages, setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "docs/README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="pycontw-report-generator",
packages=find_packages(exclude=["tasks", "test", "scripts"]),
zip_safe=False,
include_package_data=True,
version="1.5.2",
description="PyCon TW post-event report generator. A cli command to generate PyCon TW post-event reports.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Taihsiang Ho (tai271828)",
author_email="[email protected]",
license="BSD 3-Clause",
url="https://github.com/pycontw/postevent-report-generator",
download_url="https://github.com/pycontw/postevent-report-generator.git",
keywords=["attendee", "pycontw", "post-event", "report-generator"],
entry_points={
"console_scripts": [
"rg-cli=report_generator.controller.report_generator_cli:main"
]
},
install_requires=[
"pandas",
"seaborn",
"numpy",
"matplotlib",
"click==7.0",
"Pillow",
"Jinja2==2.10.3",
"MarkupSafe<=2.0.1",
"PyYAML",
],
classifiers=["Programming Language :: Python"],
)