-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (28 loc) · 852 Bytes
/
setup.py
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
30
31
32
33
34
# python3
from setuptools import setup
NAME = "devtest-testcases"
VERSION = "1.0"
with open('README.md') as fo:
LONG_DESCRIPTION = fo.read()
setup(name=NAME, version=VERSION,
namespace_packages=["testcases"],
packages=["testcases.examples"],
install_requires=[
"devtest",
],
description="Base namespace package for all test cases.",
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
license="Apache-2.0",
author="Keith Dart",
author_email="[email protected]",
keywords="automated tests",
classifiers=[
"Operating System :: POSIX",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Environment :: Console",
"Programming Language :: Python :: 3 :: Only",
],
)
# vim:ts=4:sw=4:softtabstop=4:smarttab:expandtab