-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from hugovk/package
Package for distribution
- Loading branch information
Showing
5 changed files
with
52 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
[build-system] | ||
build-backend = "hatchling.build" | ||
requires = [ | ||
"hatchling", | ||
] | ||
|
||
[project] | ||
name = "starpy" | ||
version = "0.0.001" | ||
description = "Python implementation of the STAR Voting system" | ||
readme = "README.md" | ||
keywords = [ | ||
"STAR voting", | ||
"voting", | ||
] | ||
license-files = { paths = [ "LICENSE" ] } | ||
requires-python = ">=3.9" | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3.13", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy", | ||
] | ||
dependencies = [ | ||
"numpy>=1.21.4", | ||
"pandas>=1.3.4", | ||
] | ||
optional-dependencies.tests = [ | ||
"pytest", | ||
] | ||
urls.Changelog = "https://github.com/Equal-Vote/starpy/releases" | ||
urls.Homepage = "https://github.com/Equal-Vote/starpy" | ||
urls.Source = "https://github.com/Equal-Vote/starpy" |
This file was deleted.
Oops, something went wrong.