-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsetup.py
More file actions
65 lines (56 loc) · 2.04 KB
/
setup.py
File metadata and controls
65 lines (56 loc) · 2.04 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import setuptools
import os
import codecs
def read(rel_path):
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, rel_path), "r", encoding="utf-8") as fp:
return fp.read()
def get_version(rel_path):
for line in read(rel_path).splitlines():
if line.startswith("__version__"):
delim = '"' if '"' in line else "'"
return line.split(delim)[1]
else:
raise RuntimeError("Unable to find version string.")
FILE_PATH = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(FILE_PATH, "README.md"), "r", encoding="utf-8") as fh:
try:
long_description = fh.read()
except UnicodeDecodeError:
pass
requirements_path = os.path.join(FILE_PATH, "requirements.txt")
with open(requirements_path, "r", encoding="utf-8") as f:
required = f.read().splitlines()
setuptools.setup(
name="cnmaps",
version=get_version("cnmaps/__init__.py"),
author="Wentao Li",
author_email="clarmylee92510@gmail.com",
description="A python package to draw china maps more easily",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cnmetlab/cnmaps",
include_package_data=True,
packages=setuptools.find_packages(),
package_data={
"cnmaps._bundled_skills": [
"platforms/codex/cnmaps-python-assistant/SKILL.md",
"platforms/codex/cnmaps-python-assistant/agents/*.yaml",
"platforms/codex/cnmaps-python-assistant/references/*.md",
"platforms/cursor/cnmaps-python-assistant/SKILL.md",
"platforms/claudecode/cnmaps-python-assistant/SKILL.md",
"shared/cnmaps-python-assistant/references/*.md",
"shared/cnmaps-python-assistant/examples/*.py",
]
},
install_requires=required,
entry_points={
"console_scripts": [
"cnmaps=cnmaps_cli:main",
]
},
classifiers=[
"Programming Language :: Python :: 3",
],
python_requires=">=3.9,<4.0",
)