build(setup): move install_requires into cfg

This commit is contained in:
nico 2023-01-13 21:51:54 +01:00
parent 6cee20fae9
commit e434e449aa
Signed by: mightyBroccoli
GPG Key ID: 1F6495B44DABCE6E
2 changed files with 7 additions and 12 deletions

View File

@ -21,6 +21,12 @@ classifiers =
Topic :: Internet :: WWW/HTTP :: Dynamic Content
[options]
install_requires =
appdirs>=1.4
requests>=2.25
ruamel.yaml>=0.17
ruamel.yaml.clib>=0.2
urllib3>=1.26
packages = find:
package_dir = = src
include_package_data = true

View File

@ -1,13 +1,2 @@
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="bl-imp",
install_requires=[
"appdirs>=1.4",
"requests>=2.25",
"ruamel.yaml>=0.17",
"ruamel.yaml.clib>=0.2",
"urllib3>=1.26",
],
)
setup()