don't use version from setuptools_scm

This commit is contained in:
Dmitry Belyaev 2020-02-19 20:40:14 +03:00
parent b6444e7f9d
commit 7ad0b4d3d8
Signed by: b4tman
GPG Key ID: 41A00BF15EA7E5F3
5 changed files with 4 additions and 15 deletions

View File

@ -1 +0,0 @@
ref-names: $Format:%D$

1
.gitattributes vendored
View File

@ -1 +0,0 @@
.git_archival.txt export-subst

View File

@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools>=40.8.0", "wheel", "setuptools_scm"]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"

View File

@ -1,10 +1,2 @@
[metadata]
license_files = LICENSE
[options]
setup_requires =
setuptools_scm
setuptools_scm_git_archive
[bdist_wheel]
universal=1

View File

@ -1,5 +1,7 @@
import setuptools
version = '0.1'
with open('README.md', 'r') as fh:
long_description = fh.read()
@ -12,10 +14,7 @@ setuptools.setup(
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/b4tman/sync_ics2gcal',
use_scm_version={
'fallback_version': '0.1'
},
setup_requires=['setuptools_scm', 'setuptools_scm_git_archive'],
version=version,
packages=setuptools.find_packages(exclude=['tests']),
classifiers=[
'License :: OSI Approved :: MIT License',