Skip to content

Commit

Permalink
add minimal_setup.py example
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffjennings committed Jul 10, 2024
1 parent c01d1a5 commit 2b53a2a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions example_setup_files/minimal_setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from setuptools import find_packages, setup

with open("README.md", "r") as f:
long_description = f.read()

setup(
name="py_template",
description="Template Python repository",
version="0.0.1",
long_description=long_description,
long_description_content_type="text/markdown",
license_files=("LICENSE.rst",),
author="Jeff Jennings",
author_email="jjennings@flatironinstitute.org",
packages=find_packages(),
python_requires=">=3.10",
install_requires=["numpy >= 1.24"],
)

0 comments on commit 2b53a2a

Please sign in to comment.