-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (33 loc) · 1.08 KB
/
setup.py
File metadata and controls
38 lines (33 loc) · 1.08 KB
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
35
36
37
38
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
__version__ = '0.0.2'
if __name__ == '__main__':
setup(
name='noseapp_requests',
url='https://github.com/brannt/noseapp_requests',
version=__version__,
packages=find_packages(exclude=['docs', 'test*']),
author='Artem Gorokhov',
author_email='[email protected]',
description='requests extension for noseapp lib',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
keywords='noseapp requests testing',
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'noseapp>=1.0.9',
'requests==2.6.0',
],
extras_require={
'doc': ['Sphinx']
}
)