blob: c935798dbf9918bd0f4c540e86bba5a0f4d49c3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
from setuptools import setup
setup(
name="covtestegg1",
packages=['egg1'],
zip_safe=True,
install_requires=[],
)
|