-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
40 lines (34 loc) · 1.46 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
"""Setup script for version_query package."""
import boilerplates.setup
class Package(boilerplates.setup.Package):
"""Package metadata."""
name = 'version-query'
description = 'Zero-overhead package versioning for Python.'
url = 'https://github.com/mbdevpl/version-query'
author = 'Mateusz Bysiek, John Vandenberg'
maintainer = 'Mateusz Bysiek'
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Version Control',
'Topic :: Software Development :: Version Control :: Git',
'Topic :: System :: Software Distribution',
'Topic :: Utilities',
'Typing :: Typed']
keywords = [
'automation', 'continuous integration', 'git', 'releasing', 'semantic versioning',
'tagging', 'versioning']
if __name__ == '__main__':
Package.setup()