-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.17 KB
/
setup.py
File metadata and controls
41 lines (38 loc) · 1.17 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
39
40
41
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
tests_require = [
'coverage',
'codeclimate-test-reporter',
]
setup(
name='pytimeout',
version='0.0.1',
author='Tsukasa NAKATANI',
url='https://github.com/tsukachu/pytimeout',
license='MIT',
description='Minimal timeout handling to developers.',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Education',
'Topic :: Education :: Testing',
'Topic :: Software Development',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
],
packages=find_packages(),
extras_require={
'testing': tests_require,
},
test_suite='tests',
)