mirror of
https://github.com/drone-plugins/drone-pypi.git
synced 2026-06-04 10:15:06 +08:00
13 lines
324 B
Python
13 lines
324 B
Python
from setuptools import setup
|
|
|
|
|
|
setup(
|
|
name='drone-pypi-testbuild',
|
|
version='0.1.0',
|
|
description='Testing drone-pypi publishes, no other purpose.',
|
|
url='https://github.com/xoxys/drone-pypi',
|
|
packages=['testdata/drone_pypi_test'],
|
|
maintainer='Robert Kaussow',
|
|
maintainer_email="xoxys@rknet.org",
|
|
)
|