Skip to content

Commit

Permalink
Updated install to use setup.cfg format for setuptools v30.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonni committed Oct 14, 2020
1 parent eb8f5ad commit 802d614
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 12 deletions.
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build-system]
requires = [
"setuptools >= 40.9.0",
"wheel",
]
build-backend = "setuptools.build_meta"
19 changes: 19 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[metadata]
name = MinerUtils
version = 2.6.0
author = Nicholas Nelson & Caius Brindescu
author_email = nelsonni@oregonstate.edu
license = MIT License
description = GitHub API Access Utilities
url = https://github.com/EPICLab/miner-utils
long_description = file: README.md

[options]
packages = find:
install_requires =
requests
bigjson

[options.extras_require]
tests =
pytest >= 3.0.3
13 changes: 1 addition & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
#!/usr/bin/env python

import setuptools
from distutils.core import setup

setup(name='MinerUtils',
version='2.6.0',
description='GitHub API Access Utilities',
author='Nicholas Nelson & Caius Brindescu',
author_email='nelsonni@oregonstate.edu',
url='https://github.com/EPICLAB/miner-utils',
packages=['minerutils'],
install_requires=['requests']
)
setuptools.setup()

0 comments on commit 802d614

Please sign in to comment.