forked from github.com/pypiserver
3676771719
+ Generate dummy-dists within tests to support running on every platform/py-version. + delete pr-generated dummy-wheels. + Add forgotten test-packages `twinw`, `passlib`! + Update bugfix signing `twine` 1.6.1-->1.6.1.
16 lines
427 B
Python
16 lines
427 B
Python
## A test-distribution to check if
|
|
# 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
|
|
#
|
|
from setuptools import setup
|
|
setup(
|
|
name='centodeps',
|
|
install_requires=['a==1.0'] * 200,
|
|
options={
|
|
'bdist_wheel': {'universal': True},
|
|
},
|
|
)
|