generated from caltechlibrary/template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
26 lines (22 loc) · 815 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
#!/usr/bin/env python3
# =============================================================================
# @file setup.py
# @brief Installation setup file
# @author Michael Hucka <mhucka@caltech.edu>
# @license Please see the file named LICENSE in the project directory
# @website https://github.com/caltechlibrary/bun
#
# Note: configuration metadata is maintained in setup.cfg. This file exists
# primarily to hook in setup.cfg and requirements.txt.
#
# =============================================================================
import os
from os import path
from setuptools import setup
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'requirements.txt')) as f:
reqs = f.read().rstrip().splitlines()
setup(
setup_requires = ['wheel'],
install_requires = reqs,
)