1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- [build-system]
- requires = ["flit_core >=3.2.0,<4"]
- build-backend = "flit_core.buildapi"
- [project]
- name = "pynsist"
- authors = [
- {name = "Thomas Kluyver", email = "thomas@kluyver.me.uk"},
- ]
- readme = "README.rst"
- requires-python = ">=3.6"
- dependencies = [
- "requests",
- "requests_download",
- "jinja2",
- "yarg",
- "distlib >=0.3"
- ]
- classifiers = [
- "License :: OSI Approved :: MIT License",
- "Intended Audience :: Developers",
- "Environment :: Win32 (MS Windows)",
- "Programming Language :: Python :: 3",
- "Topic :: Software Development",
- "Topic :: System :: Installation/Setup",
- "Topic :: System :: Software Distribution",
- ]
- dynamic = ['version', 'description']
- [tool.flit.module]
- name = "nsist"
- [project.optional-dependencies]
- test = [
- "testpath",
- "responses",
- ]
- [project.scripts]
- pynsist = "nsist:main"
- [project.urls]
- Documentation = "https://pynsist.readthedocs.io/en/latest/"
- Source = "https://github.com/takluyver/pynsist"
|