-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 695 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from setuptools import setup
import stubserver
setup(name='stubserver',
version=stubserver.__version__,
description=stubserver.__doc__,
author=stubserver.__author__,
author_email=stubserver.__email__,
url=stubserver.__url__,
packages=['stubserver'],
licence='FreeBSD',
test_suite='test',
keywords=['test', 'unittest', 'mock', 'http', 'ftp'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
]
)