forked from madisongh/digsigserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to using setup.cfg and pyproject.toml
Signed-off-by: Matt Madison <[email protected]>
- Loading branch information
Showing
3 changed files
with
20 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel"] | ||
build-backend = "setuptools.build_meta" |
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,15 @@ | ||
[metadata] | ||
name = digsigserver | ||
version = 0.7.2 | ||
license = MIT | ||
license_files = LICENSE | ||
author = Matt Madison | ||
author_email = [email protected] | ||
|
||
[options] | ||
packages = find: | ||
install_requires = sanic>=21.12 | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
digsigserver = digsigserver.scripts.digsigserver:main |
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 |
---|---|---|
@@ -1,16 +1,2 @@ | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name='digsigserver', | ||
version='0.7.2', | ||
packages=find_packages(), | ||
license='MIT', | ||
author='Matt Madison', | ||
author_email='[email protected]', | ||
entry_points={ | ||
'console_scripts': [ | ||
'digsigserver = digsigserver.scripts.digsigserver:main', | ||
] | ||
}, | ||
install_requires=['sanic>=21.12'] | ||
) | ||
from setuptools import setup | ||
setup() |