mirror of
https://github.com/b4tman/sync_ics2gcal
synced 2025-09-23 02:09:08 +00:00
don't use version from setuptools_scm
This commit is contained in:
@@ -1 +0,0 @@
|
|||||||
ref-names: $Format:%D$
|
|
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -1 +0,0 @@
|
|||||||
.git_archival.txt export-subst
|
|
@@ -1,3 +1,3 @@
|
|||||||
[build-system]
|
[build-system]
|
||||||
requires = ["setuptools>=40.8.0", "wheel", "setuptools_scm"]
|
requires = ["setuptools>=40.8.0", "wheel"]
|
||||||
build-backend = "setuptools.build_meta"
|
build-backend = "setuptools.build_meta"
|
||||||
|
@@ -1,10 +1,2 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
license_files = LICENSE
|
license_files = LICENSE
|
||||||
|
|
||||||
[options]
|
|
||||||
setup_requires =
|
|
||||||
setuptools_scm
|
|
||||||
setuptools_scm_git_archive
|
|
||||||
|
|
||||||
[bdist_wheel]
|
|
||||||
universal=1
|
|
7
setup.py
7
setup.py
@@ -1,5 +1,7 @@
|
|||||||
import setuptools
|
import setuptools
|
||||||
|
|
||||||
|
version = '0.1'
|
||||||
|
|
||||||
with open('README.md', 'r') as fh:
|
with open('README.md', 'r') as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
@@ -12,10 +14,7 @@ setuptools.setup(
|
|||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type='text/markdown',
|
long_description_content_type='text/markdown',
|
||||||
url='https://github.com/b4tman/sync_ics2gcal',
|
url='https://github.com/b4tman/sync_ics2gcal',
|
||||||
use_scm_version={
|
version=version,
|
||||||
'fallback_version': '0.1'
|
|
||||||
},
|
|
||||||
setup_requires=['setuptools_scm', 'setuptools_scm_git_archive'],
|
|
||||||
packages=setuptools.find_packages(exclude=['tests']),
|
packages=setuptools.find_packages(exclude=['tests']),
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'License :: OSI Approved :: MIT License',
|
'License :: OSI Approved :: MIT License',
|
||||||
|
Reference in New Issue
Block a user