forked from daohu527/imap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.02 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="imap_box",
version="0.1.6",
author="daohu527",
author_email="daohu527@gmail.com",
description="High-resolution map visualization and conversion tool",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/daohu527/imap",
project_urls={
"Bug Tracker": "https://github.com/daohu527/imap/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
package_dir={"": "."},
packages=setuptools.find_packages(where="."),
install_requires=[
'protobuf<=3.19.4',
'matplotlib',
'pyproj',
'record_msg<=0.1.1',
],
entry_points={
'console_scripts': [
'imap = imap.main:main',
],
},
python_requires=">=3.6",
)