- commit
- 1fa872f554af86453c42613985aff7b253a56986
- parent
- 8afb3e5d0b5d0ad6f40a3e7f94185fa2b7585b44
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2023-11-05 10:01
switch to pyproject.toml
Diffstat
| A | pyproject.toml | 26 | ++++++++++++++++++++++++++ |
| D | setup.py | 24 | ------------------------ |
2 files changed, 26 insertions, 24 deletions
diff --git a/pyproject.toml b/pyproject.toml
@@ -0,0 +1,26 @@
-1 1 [build-system]
-1 2 requires = ["setuptools"]
-1 3 build-backend = "setuptools.build_meta"
-1 4
-1 5 [project]
-1 6 name = "simplecharts"
-1 7 version = "0.0.2"
-1 8 description = "SVG charts without dependencies"
-1 9 readme = "README.rst"
-1 10 license = {text = "MIT"}
-1 11 keywords = ["svg", "charts"]
-1 12 authors = [
-1 13 {name = "Tobias Bengfort", email = "tobias.bengfort@posteo.de"}
-1 14 ]
-1 15 classifiers = [
-1 16 "Topic :: Scientific/Engineering :: Visualization",
-1 17 ]
-1 18
-1 19 [project.urls]
-1 20 Homepage = "https://github.com/xi/simplecharts"
-1 21
-1 22 [project.scripts]
-1 23 simplecharts = "simplecharts:main"
-1 24
-1 25 [tool.setuptools]
-1 26 py-modules = ["simplecharts"]
diff --git a/setup.py b/setup.py
@@ -1,24 +0,0 @@1 -1 import os2 -13 -1 from setuptools import setup4 -15 -1 README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()6 -17 -18 -1 setup(9 -1 name='simplecharts',10 -1 version='0.0.2',11 -1 description='SVG charts without dependencies',12 -1 long_description=README,13 -1 url='https://github.com/xi/simplecharts',14 -1 author='Tobias Bengfort',15 -1 author_email='tobias.bengfort@posteo.de',16 -1 py_modules=['simplecharts'],17 -1 license='MIT',18 -1 entry_points={'console_scripts': [19 -1 'simplecharts=simplecharts:main',20 -1 ]},21 -1 classifiers=[22 -1 'Topic :: Scientific/Engineering :: Visualization',23 -1 ]24 -1 )