-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·37 lines (34 loc) · 1.08 KB
/
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
37
# -----------------------------------
# Instructions for installing this package:
# 0. Run the required installations:
# Run the following command in the terminal:
# $ pip install -r requirements.txt
# 1. install VEST package:
# $ pip install .
# (if you install VEST package in editable mode for dev, Use the `-e` option: $ pip install -e .)
# Once installed, you can use the 'VEST' package and its associated dependencies in your project.
# -----------------------------------
from setuptools import setup, find_packages
setup(
name="vest",
version="0.1",
packages=find_packages(),
# These are commented out because the dependencies are already installed in the requirements.txt file.
# install_requires=[
# "h5py",
# "numpy",
# "uncertainties",
# "omas",
# "matplotlib",
# ],
# dependency_links=[
# "git+https://github.com/hdfgroup/h5pyd.git#egg=h5pyd",
# ],
# extras_require={
# # $ pip install .[dev]
# "dev": [
# "os",
# "subprocess",
# ],
# },
)