This repository has been archived by the owner on May 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
71 lines (64 loc) · 1.74 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
requirements_install = [
'click>=6.0'
]
requirements_test = [
'click>=6.0',
'Sphinx>=1.4.1',
'sphinx_rtd_theme>=0.1.0',
'jinja2>=2.8',
'pip>=8.0',
'wheel>=0.27',
'flake8>=2.0',
'tox>=2.3.0',
'coverage>=4.0',
'pytest>=3.0',
'pytest_cov>=2.0',
'pytest-runner>=2.5'
]
extras = {
'test': requirements_test
}
setup(
name='clatter',
version='0.1.1',
description="A Doctest-stype Command Line Application Tester",
long_description=readme,
author="Michael Delgado",
url='https://github.com/delgadom/clatter',
packages=find_packages(exclude=[
'*.tests',
'*.tests.*',
'tests.*',
'tests',
'docs',
'examples']),
package_dir={'clatter':
'clatter'},
include_package_data=True,
install_requires=requirements_install,
license="MIT license",
zip_safe=False,
keywords='clatter',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
test_suite='tests',
setup_requires=['pytest-runner'],
tests_require=requirements_test,
extras_require=extras
)