-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 743 Bytes
/
setup.py
File metadata and controls
36 lines (31 loc) · 743 Bytes
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
#!/usr/bin/env python
import setuptools
version = "0.0.1"
install_requires = (
)
setuptools.setup(
name="crypto_kiwis",
version=version,
author="Harrison Symes",
author_email="harrison@devacademy.co.nz",
url="https://github.com/plug-cryptokiwis",
packages=["crypto_kiwis"],
install_requires=install_requires,
setup_requires=["pytest-runner"],
extras_require={
"test": (
"asynctest",
"pytest > 3.3.2",
"pytest-aiohttp",
"pytest-asyncio",
),
"dev": (
"flake8",
"flake8-commas",
"flake8-isort",
"flake8-mypy",
"flake8-quotes",
"pytest-cov",
),
},
)