Skip to content

Commit 802d614

Browse files
committed
Updated install to use setup.cfg format for setuptools v30.3.0
1 parent eb8f5ad commit 802d614

File tree

3 files changed

+26
-12
lines changed

3 files changed

+26
-12
lines changed

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[build-system]
2+
requires = [
3+
"setuptools >= 40.9.0",
4+
"wheel",
5+
]
6+
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[metadata]
2+
name = MinerUtils
3+
version = 2.6.0
4+
author = Nicholas Nelson & Caius Brindescu
5+
author_email = [email protected]
6+
license = MIT License
7+
description = GitHub API Access Utilities
8+
url = https://github.com/EPICLab/miner-utils
9+
long_description = file: README.md
10+
11+
[options]
12+
packages = find:
13+
install_requires =
14+
requests
15+
bigjson
16+
17+
[options.extras_require]
18+
tests =
19+
pytest >= 3.0.3

setup.py

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,3 @@
11
#!/usr/bin/env python
2-
32
import setuptools
4-
from distutils.core import setup
5-
6-
setup(name='MinerUtils',
7-
version='2.6.0',
8-
description='GitHub API Access Utilities',
9-
author='Nicholas Nelson & Caius Brindescu',
10-
author_email='[email protected]',
11-
url='https://github.com/EPICLAB/miner-utils',
12-
packages=['minerutils'],
13-
install_requires=['requests']
14-
)
3+
setuptools.setup()

0 commit comments

Comments
 (0)