2020-10-06 04:04:22 +02:00
|
|
|
## A test-distribution to check if
|
2015-09-17 19:58:22 +02:00
|
|
|
# bottle supports uploading 100's of packages,
|
|
|
|
# see: https://github.com/pypiserver/pypiserver/issues/82
|
|
|
|
#
|
|
|
|
# Has been run once `pip wheel .`, just to generate:
|
|
|
|
# ./wheelhouse/centodeps-0.0.0-cp34-none-win_amd64.whl
|
2020-10-06 04:04:22 +02:00
|
|
|
#
|
2015-09-17 19:58:22 +02:00
|
|
|
from setuptools import setup
|
2020-10-06 04:04:22 +02:00
|
|
|
|
2015-09-17 19:58:22 +02:00
|
|
|
setup(
|
2020-10-06 04:04:22 +02:00
|
|
|
name="centodeps",
|
|
|
|
install_requires=["a==1.0"] * 200,
|
2015-09-17 19:58:22 +02:00
|
|
|
options={
|
2020-10-06 04:04:22 +02:00
|
|
|
"bdist_wheel": {"universal": True},
|
2015-09-17 19:58:22 +02:00
|
|
|
},
|
|
|
|
)
|