forked from yihong0618/GitHubPoster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (39 loc) · 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
37
38
39
40
from setuptools import find_packages, setup
setup(
name="github_poster",
author="yihong0618",
author_email="[email protected]",
url="https://github.com/yihong0618/GitHubPoster",
license="MIT",
version="2.3.0",
description="Make everything a GitHub svg poster and Skyline!",
packages=find_packages(),
include_package_data=True,
install_requires=[
"requests",
"svgwrite",
"pendulum",
"colour",
],
extras_require={
"twitter": ["twint_fork"],
"garmin": ["garminconnect"],
"gpx": ["gpxpy"],
"strava": ["stravalib"],
"github": ["PyGithub"],
"skyline": ["sdf_fork"],
"todoist": ["pandas"],
"all": [
"twint_fork",
"garminconnect",
"gpxpy",
"stravalib",
"PyGithub",
"sdf_fork",
"pandas",
],
},
entry_points={
"console_scripts": ["github_poster = github_poster.cli:main"],
},
)