Skip to content

Commit 9ad43f2

Browse files
committed
Go over pyproject.toml
Need to put command-line name that ends in ".py" in quotes
1 parent f0f2980 commit 9ad43f2

File tree

2 files changed

+2
-28
lines changed

2 files changed

+2
-28
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ full = [
6060
]
6161

6262
[project.scripts]
63-
mathicsscript = "mathicsscript.__main__:main"
64-
# fake_psviewer.py = "mathicsscript.fake_psviewer:main"
63+
mathicsscript = "mathicsscript.__main__:main"
64+
"fake_psviewer.py" = "mathicsscript.fake_psviewer:main"
6565

6666
[project.urls]
6767
Homepage = "https://mathics.org/"

setup.py

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -29,34 +29,8 @@
2929
"mathicsscript/config.asy",
3030
]
3131
},
32-
entry_points={
33-
"console_scripts": [
34-
"mathicsscript = mathicsscript.__main__:main",
35-
"fake_psviewer.py = mathicsscript.fake_psviewer:main",
36-
]
37-
},
3832
long_description_content_type="text/x-rst",
3933
# don't pack Mathics in egg because of media files, etc.
4034
zip_safe=False,
41-
# metadata for upload to PyPI
42-
description="A general-purpose computer algebra system.",
43-
license="GPL",
44-
classifiers=[
45-
"Intended Audience :: Developers",
46-
"Intended Audience :: Science/Research",
47-
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
48-
"Programming Language :: Python",
49-
"Programming Language :: Python :: 3.7",
50-
"Programming Language :: Python :: 3.8",
51-
"Programming Language :: Python :: 3.9",
52-
"Programming Language :: Python :: 3.10",
53-
"Programming Language :: Python :: 3.11",
54-
"Programming Language :: Python :: Implementation :: CPython",
55-
"Programming Language :: Python :: Implementation :: PyPy",
56-
"Topic :: Scientific/Engineering",
57-
"Topic :: Scientific/Engineering :: Mathematics",
58-
"Topic :: Scientific/Engineering :: Physics",
59-
"Topic :: Software Development :: Interpreters",
60-
],
6135
# TODO: could also include long_description, download_url,
6236
)

0 commit comments

Comments
 (0)