forked from 2i2c-org/infrastructure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 752 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
from setuptools import find_packages, setup
with open("README.md", encoding="utf8") as f:
readme = f.read()
install_requires = []
with open("requirements.txt") as f:
for l in f:
if not l.startswith("#"):
install_requires.append(l.split("#", 1)[0].strip())
setup(
name="2i2c-deployer",
version="0.1",
install_requires=install_requires,
python_requires=">=3.6",
description="Deploy JupyterHubs for the 2i2c Infrastructure",
long_description=readme,
long_description_content_type="text/markdown",
license="3-BSD",
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
"deployer = deployer.__main__:main",
],
},
)