Skip to content

Commit

Permalink
Move project metadata to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
EpicWink committed Nov 14, 2024
1 parent 0d23d22 commit 2ec762c
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 23 deletions.
10 changes: 0 additions & 10 deletions MANIFEST.in

This file was deleted.

26 changes: 26 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 61.0",
]

[project]
name = "tinynumpy"
version = "1.2.0"

authors = [
{ name = "Wade Brainerd", email = "[email protected]" },
{ name = "Almar Klein" },
]
classifiers = []
description = "A lightweight, pure Python, numpy compliant ndarray class"
keywords = ["Science", "Research", "Engineering", "Software Development"]
license = { text = "MIT" }
readme = "README.md"

[project.urls]
Repository = "https://github.com/wadetb/tinynumpy"

[tool.setuptools]
include-package-data = false
packages = { find = { namespaces = false, include = ["tinynumpy*"] } }
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

13 changes: 2 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,4 @@
from distutils.core import setup
from setuptools import setup

setup(
name='tinynumpy',
packages=['tinynumpy'], # this must be the same as the name above
version='1.2.0',
description='A lightweight, pure Python, numpy compliant ndarray class',
author='Wade Brainerd, Almar Klein',
author_email='[email protected]',
url='https://github.com/wadetb/tinynumpy', # use the URL to the github repo
# download_url = 'https://github.com/peterldowns/mypackage/tarball/0.1',
keywords=['Science', 'Research', 'Engineering', 'Software Development'],
classifiers=[],
)

0 comments on commit 2ec762c

Please sign in to comment.