-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 863 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
import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), "requirements.txt")) as f:
requirements = [
line.strip() for line in f.readlines() if not line.strip().startswith("#")
]
setup(
name="meca4binder",
version="0.0.1",
description="MECA bundle providers for BinderHub and repo2docker",
url="https://github.com/curvenote/meca4binder",
author="Steve Purves",
author_email="[email protected]",
license="MIT",
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
python_requires=">=3.7",
extras_require={
"test": [
"pytest",
"pytest-watch",
"pytest-asyncio",
"pytest-mock",
"black",
"flake8",
"pytest-cov",
]
},
)