-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
36 lines (35 loc) · 842 Bytes
/
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
from setuptools import find_packages, setup
setup(
name='hubtraf',
version='1.0.0.dev',
url='https://github.com/yuvipanda/hubtraf',
license='3-clause BSD',
author='YuviPanda',
author_email='[email protected]',
packages=find_packages(),
entry_points={
'console_scripts': [
'hubtraf-simulate = hubtraf.simulate:main',
'hubtraf-check = hubtraf.check:main',
],
},
install_requires=[
"aiohttp",
"structlog",
"oauthlib",
"yarl",
"colorama",
],
extras_require={
"test": [
"ipykernel",
"jupyter-server",
"jupyterlab",
"jupyterhub",
"pytest",
"pytest-asyncio",
"pytest-cov",
"pytest-jupyterhub",
],
},
)