Skip to content
Snippets Groups Projects
pyproject.toml 912 B
Newer Older
  • Learn to ignore specific revisions
  • Nico's avatar
    Nico committed
    [build-system]
    requires = ["flit"]
    build-backend = "flit.buildapi"
    
    [tool.flit.metadata]
    module = "briar_wrapper"
    author = "Briar Community"
    author-email = "contact@briarproject.org"
    home-page = "https://code.briarproject.org/briar/python-briar-wrapper"
    requires = [
    	"requests2>=2.16.0",
    	"websockets>=8.0.2",
    ]
    requires-python=">=3"
    description-file="README.md"
    classifiers = [
    	"Development Status :: 3 - Alpha",
    	"Intended Audience :: Developers",
    	"License :: OSI Approved :: GNU Affero General Public License v3",
    	"Natural Language :: English",
    	"Operating System :: OS Independent",
    	"Programming Language :: Java",
    	"Programming Language :: Python :: 3",
    	"Topic :: Communications :: Chat",
    ]
    
    [tool.flit.metadata.urls]
    "Bug Tracker" = "https://code.briarproject.org/briar/python-briar-wrapper/issues/"
    "Briar REST API" = "https://code.briarproject.org/briar/briar/blob/master/briar-headless/README.md"