generated from nyu-software-engineering/python-package-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from software-students-spring2024/Jiahua
Made changes to the file structure but failed to use twine to upload to pypi
- Loading branch information
Showing
3 changed files
with
36 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,4 @@ twine = "*" | |
build = "*" | ||
|
||
[requires] | ||
python_version = "3.8" | ||
python_version = "3.12" |
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,35 @@ | ||
[build-system] | ||
requires = ["setuptools>=42", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "new_york_minute" | ||
version = "1.1.0" | ||
authors = [ | ||
{name = "Hannah Horiuchi", email = "[email protected]"}, | ||
{name = "Jiahua Liao", email = "[email protected]"}, | ||
{name = "Kevin Lin", email = "[email protected]"}, | ||
{name = "Nicole Luzuriaga", email = "[email protected]"} | ||
] | ||
description = "A text-based game set in New York City" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: End Users/Desktop", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/software-students-spring2024/3-python-package-exercise-namelessss" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["new_york_minute"] | ||
|
||
[tool.pytest.ini_options] | ||
minversion = "6.0" | ||
addopts = "-ra -q" | ||
testpaths = ["tests"] |