forked from s2technologies/testspace-python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
15 lines (14 loc) · 392 Bytes
/
Copy pathsetup.py
File metadata and controls
15 lines (14 loc) · 392 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fromsetuptoolsimportsetup, find_packages
setup(
name='testspace-python',
version='',
packages=find_packages(include=['testspace', 'testspace.*']),
url='',
license="MIT license",
author="Jeffrey Schultz",
author_email='jeffs@s2technologies.com',
description="Module for interacting with Testspace Server",
install_requires=[
'requests',
]
)