-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 776 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (25 loc) · 776 Bytes
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
from setuptools import setup, find_packages
setup(
name="paperglobe",
description="Turns a map into a paper globe template",
long_description="A Python utility that will transform an image of the Earth to a template that you can cut and assemble by yourself",
url="https://github.com/joachimesque/paper-globe",
version="0.1.3",
author="Joachim Robert",
author_email="joachim.robert@protonmail.com",
license="GNU AGPL 3",
py_modules=["paperglobe"],
packages=find_packages(),
include_package_data=True,
install_requires=[
"Click",
"colorama",
"PyMuPDF==1.23.26",
"wand",
],
entry_points={
"console_scripts": [
"paperglobe = paperglobe.scripts:cli",
],
},
)