Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move project metadata to pyproject.toml #35

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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=[],
)