|
| 1 | +[build-system] # flit_core seems the step after 'setuptools','wheel','build','twine' (see https://github.com/pypa/build/issues/394) |
| 2 | +requires = ["flit_core"] |
| 3 | +build-backend = "flit_core.buildapi" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "sqlite_bro" |
| 7 | +authors = [ |
| 8 | + {name = "stonebig"}, |
| 9 | +] |
| 10 | +dependencies = [] |
| 11 | +requires-python = ">=3.3" |
| 12 | +readme = "README.rst" |
| 13 | +license = {file = "LICENSE"} |
| 14 | +classifiers=[ |
| 15 | + 'Intended Audience :: Education', |
| 16 | + 'License :: OSI Approved :: MIT License', |
| 17 | + 'Operating System :: MacOS', |
| 18 | + 'Operating System :: Microsoft :: Windows', |
| 19 | + 'Operating System :: OS Independent', |
| 20 | + 'Operating System :: POSIX', |
| 21 | + 'Operating System :: Unix', |
| 22 | + 'Programming Language :: Python :: 3', |
| 23 | + 'Development Status :: 5 - Production/Stable', |
| 24 | + 'Topic :: Scientific/Engineering', |
| 25 | + 'Topic :: Software Development :: Widget Sets', |
| 26 | +] |
| 27 | +dynamic = ["version",] |
| 28 | +description="a graphic SQLite Client in 1 Python file" |
| 29 | +keywords = ["sqlite", "gui", "ttk", "sql"] |
| 30 | + |
| 31 | +[project.urls] |
| 32 | +Documentation = "https://github.com/stonebig/sqlite_bro/README.rst" |
| 33 | +Source = "https://github.com/stonebig/sqlite_bro" |
| 34 | + |
| 35 | +[project.scripts] |
| 36 | +sqlite_bro = "sqlite_bro.sqlite_bro:_main" |
0 commit comments