-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 687 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""The setup for katas modules."""
from setuptools import setup
setup(
name="code katas",
description="A Python implementation of Code War katas",
version=0.1,
author="Sera Smith",
author_email="seras37@gmail.com",
license='MIT',
py_modules=['auto_complete', 'calculate_years', 'count_bits', 'decending_order', 'find_odd_int', 'flight_paths', 'forbes', 'human_readable', 'is_isogram', 'multiply', 'parenthetics', 'remove_min', 'shortest_word', 'sort_cards', 'string_pyramid', 'sum_terms' 'xo'],
package_dir={'': 'src'},
install_requires=['numpy', 'tox'],
extras_require={
"test": ["pytest", "pytest-watch", "pytest-cov", 'tox']
},
)