diff --git a/Pipfile b/Pipfile index 0e2737e..38f286d 100644 --- a/Pipfile +++ b/Pipfile @@ -11,4 +11,4 @@ twine = "*" build = "*" [requires] -python_version = "3.8" \ No newline at end of file +python_version = "3.12" \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..70e8738 --- /dev/null +++ b/pyproject.toml @@ -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 = "hah8236@nyu.edu"}, + {name = "Jiahua Liao", email = "jl11844@nyu.edu"}, + {name = "Kevin Lin", email = "kl3890@nyu.edu"}, + {name = "Nicole Luzuriaga", email = "nl2210@nyu.edu"} +] +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"] \ No newline at end of file diff --git a/setup.py b/setup.py deleted file mode 100644 index 577dcd1..0000000 --- a/setup.py +++ /dev/null @@ -1,19 +0,0 @@ -from setuptools import setup, find_packages - -setup( - name="new_york_minute", - version="1.0.0", - description="A text-based game set in New York City", - author="Hannah Horiuchi, Jiahua Liao, Kevin Lin, Nicole Luzuriaga", - author_email="hah8236@nyu.edu, jl11844@nyu.edu, kl3890@nyu.edu, nl2210@nyu.edu", - packages=find_packages(), - install_requires=[], - 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", - ], -) \ No newline at end of file