- commit
- 1979522d3121f4b4dd30090f0726f983d4b30a0d
- parent
- 3d8839acaf0c4741a128bf3eb8f8229520a5a53f
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2023-11-05 09:53
switch to pyproject.toml
Diffstat
| A | pyproject.toml | 23 | +++++++++++++++++++++++ |
| D | setup.py | 17 | ----------------- |
2 files changed, 23 insertions, 17 deletions
diff --git a/pyproject.toml b/pyproject.toml
@@ -0,0 +1,23 @@
-1 1 [build-system]
-1 2 requires = ["setuptools"]
-1 3 build-backend = "setuptools.build_meta"
-1 4
-1 5 [project]
-1 6 name = "xiwal"
-1 7 version = "0.0.0"
-1 8 description = "Generate terminal color schemes"
-1 9 readme = "README.md"
-1 10 license = {text = "MIT"}
-1 11 keywords = ["terminal", "colorscheme", "wal", "colorscheme-generator"]
-1 12 authors = [
-1 13 {name = "Tobias Bengfort", email = "tobias.bengfort@posteo.de"}
-1 14 ]
-1 15
-1 16 [project.urls]
-1 17 Homepage = "https://github.com/xi/xiwal"
-1 18
-1 19 [project.scripts]
-1 20 xiwal = "xiwal.__main__:main"
-1 21
-1 22 [tool.setuptools]
-1 23 packages = ["xiwal"]
diff --git a/setup.py b/setup.py
@@ -1,17 +0,0 @@1 -1 from setuptools import find_packages2 -1 from setuptools import setup3 -14 -15 -1 setup(6 -1 name='xiwal',7 -1 version='0.0.0',8 -1 description='Generate terminal color schemes',9 -1 url='https://github.com/xi/xiwal',10 -1 author='Tobias Bengfort',11 -1 author_email='tobias.bengfort@posteo.de',12 -1 packages=find_packages(),13 -1 entry_points={'console_scripts': [14 -1 'xiwal=xiwal.__main__:main',15 -1 ]},16 -1 license='MIT',17 -1 )