Skip to content

Commit ea1c589

Browse files
author
Abhishek Singh
committed
PEP 517 compliant build using pyproject.toml
1 parent 41e523b commit ea1c589

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

pyproject.toml

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

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
from os import path
22

33
from setuptools import find_packages, setup
4-
from sqlite_rx import __version__
54

65

76
this_directory = path.abspath(path.dirname(__file__))
87

98
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
109
long_description = f.read()
1110

12-
VERSION = __version__
11+
VERSION = '1.1.0'
1312
DISTNAME = 'sqlite_rx'
1413
LICENSE = 'MIT License'
1514
AUTHOR = 'Abhishek Singh'

0 commit comments

Comments
 (0)