-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 754 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name='devpi-cloud-test',
author='Oliver Bestwalter',
url='https://github.com/obestwalter/devpi-cloud-test',
use_scm_version=True,
description='CLI tool to manipulate cloud test repos and trigger tests',
setup_requires=['setuptools_scm'],
packages=find_packages(),
include_package_data=True,
install_requires=['fire', 'plumbum'],
entry_points={'console_scripts': ['dct = dct.cli:main']},
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
)