Update versioning convention
This commit is contained in:
parent
9dca392159
commit
c4878f806e
@ -1,7 +1,19 @@
|
|||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.0.0
|
current_version = 0.0.0-dev1
|
||||||
commit = True
|
commit = True
|
||||||
tag = True
|
tag = False
|
||||||
|
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
|
||||||
|
serialize =
|
||||||
|
{major}.{minor}.{patch}-{release}{build}
|
||||||
|
{major}.{minor}.{patch}
|
||||||
|
|
||||||
|
[bumpversion:part:release]
|
||||||
|
optional_value = prod
|
||||||
|
first_value = dev
|
||||||
|
values =
|
||||||
|
dev
|
||||||
|
rc
|
||||||
|
prod
|
||||||
|
|
||||||
[bumpversion:file:setup.py]
|
[bumpversion:file:setup.py]
|
||||||
|
|
||||||
|
9
setup.py
9
setup.py
@ -10,7 +10,7 @@ with open('README.md', 'r') as fh:
|
|||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
setup(name='prototorch',
|
setup(name='prototorch',
|
||||||
version='0.0.0',
|
version='0.0.0-dev1',
|
||||||
description='Highly extensible, GPU-supported '
|
description='Highly extensible, GPU-supported '
|
||||||
'Learning Vector Quantization (LVQ) toolbox '
|
'Learning Vector Quantization (LVQ) toolbox '
|
||||||
'built using PyTorch and its nn API.',
|
'built using PyTorch and its nn API.',
|
||||||
@ -23,7 +23,7 @@ setup(name='prototorch',
|
|||||||
license='MIT',
|
license='MIT',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'torch>=1.3.1',
|
'torch>=1.3.1',
|
||||||
'torchvision>=0.4.2',
|
'torchvision>=0.5.0',
|
||||||
'numpy>=1.9.1',
|
'numpy>=1.9.1',
|
||||||
'matplotlib',
|
'matplotlib',
|
||||||
'sklearn',
|
'sklearn',
|
||||||
@ -38,14 +38,15 @@ setup(name='prototorch',
|
|||||||
'tests': ['pytest'],
|
'tests': ['pytest'],
|
||||||
},
|
},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 3 - Alpha', 'Intended Audience :: Developers',
|
'Development Status :: 2 - Pre-Alpha', 'Environment :: Console',
|
||||||
'Intended Audience :: Education',
|
'Intended Audience :: Developers', 'Intended Audience :: Education',
|
||||||
'Intended Audience :: Science/Research',
|
'Intended Audience :: Science/Research',
|
||||||
'License :: OSI Approved :: MIT License',
|
'License :: OSI Approved :: MIT License',
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
'Programming Language :: Python :: 3.7',
|
'Programming Language :: Python :: 3.7',
|
||||||
'Programming Language :: Python :: 3.8',
|
'Programming Language :: Python :: 3.8',
|
||||||
'Operating System :: OS Independent',
|
'Operating System :: OS Independent',
|
||||||
|
'Topic :: Scientific/Engineering :: Artificial Intelligence',
|
||||||
'Topic :: Software Development :: Libraries',
|
'Topic :: Software Development :: Libraries',
|
||||||
'Topic :: Software Development :: Libraries :: Python Modules'
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user