Skip to content

Commit

Permalink
Move to pyproject.toml for installation. (#62)
Browse files Browse the repository at this point in the history
* Deleted setup.py, all configuration now in setup.cfg which pyproject.toml points to.
  • Loading branch information
RemingtonRohel authored Mar 23, 2023
1 parent 5b9d60e commit 18e0069
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 56 deletions.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
31 changes: 31 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
[metadata]
license_files = LICENSE
name = pydarnio
version = 1.2.1
author = SuperDARN
long_description = file: README.md
long_description_content_type = text/markdown
description = Python library for reading and writing SuperDARN data
url = https://pydarnio.readthedocs.io/en/latest/
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7

[options]
python_requires = >=3.6
include_package_data = True
install_requires =
pyyaml
numpy
h5py>=3.3.0
deepdish
pathlib2

[options.packages.find]
exclude =
test*
test_files*
docs*
build*
56 changes: 0 additions & 56 deletions setup.py

This file was deleted.

0 comments on commit 18e0069

Please sign in to comment.