-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 811 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="gmt_pyplotter",
version="v1.0.0",
description="Python script to plot map with GMT, interactively",
url="https://github.com/aditdp/gmt_pyplotter",
author="aditdp",
author_email="[email protected]",
license="BRIN",
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={
"gmt_pyplotter": [
"data/*.png",
"data/*.txt",
"data/*.exe",
"*log",
]
},
install_requires=[
"setuptools",
"Pillow",
"cursor",
"show-in-file-manager",
"customtkinter",
"psutil",
],
include_package_data=True,
entry_points={"console_scripts": ["gmt_pyplotter = gmt_pyplotter.main:main"]},
)