-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 996 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup
import test_steps
setup(
name='test_steps',
description='Simple way to run test steps and automatic logging',
author='Steven LI',
author_email='steven004@gmail.com',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Topic :: System :: Logging",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3"
],
version=test_steps.__version__,
url = "https://github.com/steven004/TestSteps",
packages = ['test_steps'],
#include_package_data = True,
)