-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move setup.py at top level and add a pyproject.toml It make it easier to install directly with a `pip install git+https://github.com/Baduit/cydoomgenericr` * Move url from setupt.py to pyproject.toml The setup.py now only contains stuff related to the cython extension. * Update github action There is no need to install the requirements manually, with the pyproject.toml it is done automatically Use the modern replacement for buildind wheels (instead of the python setup.py bdist_wheel) * Update build/install instruction in the readme * Add myself in the copyright at the top * Change build commands in README. --------- Co-authored-by: Wojciech Graj <wojtek.graj.2004@gmail.com>
- Loading branch information
1 parent
dcfa102
commit 735b4e4
Showing
4 changed files
with
30 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[build-system] | ||
requires = ["setuptools", "cython", "numpy>=1.20"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "cydoomgeneric" | ||
description = "Easily portable doom for python" | ||
version = "0.1.0" | ||
authors = [ | ||
{name = "Wojciech Graj"} | ||
] | ||
license = {file = "LICENSE"} | ||
|
||
[project.urls] | ||
homepage = "https://github.com/wojciech-graj/cydoomgeneric" | ||
|
||
[tool.setuptools] | ||
py-modules = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters