refactor for woodpecker and testing
ci/woodpecker/push/woodpecker Pipeline was successful
Details
ci/woodpecker/push/woodpecker Pipeline was successful
Details
parent
c5bc7c4c81
commit
bc01ea89d5
@ -0,0 +1,19 @@
|
||||
Copyright (c) 2022 Tom Weber
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
@ -0,0 +1,22 @@
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "conway"
|
||||
version = "0.0.1"
|
||||
authors = [
|
||||
{ name="Tom Weber", email="tom@weber.codes" },
|
||||
]
|
||||
description = "A game of life implementation"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.7"
|
||||
classifiers = [
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
"Homepage" = "https://git.weber.codes/tom/gameoflife"
|
||||
"Bug Tracker" = "https://git.weber.codes/tom/gameoflife/issues"
|
@ -1,19 +0,0 @@
|
||||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name='conway',
|
||||
version='0.1.0',
|
||||
description="A conway's game of life implementation",
|
||||
url='https://git.weber.codes/tom/conwaysgameoflife',
|
||||
author='Tom Weber',
|
||||
author_email='mail@weber.codes',
|
||||
license='BSD 2-clause',
|
||||
packages=['conway'],
|
||||
install_requires=['wheel',
|
||||
'numpy',
|
||||
'pandas',
|
||||
'matplotlib',
|
||||
'plotly'
|
||||
],
|
||||
|
||||
)
|
Loading…
Reference in new issue