-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added some development infrastructure
- Loading branch information
Showing
2 changed files
with
106 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: dev-angdist | ||
channels: | ||
- defaults | ||
- conda-forge | ||
- bioconda | ||
- pytorch | ||
- hydroid | ||
- ambermd | ||
- schrodinger | ||
- tbepler | ||
dependencies: | ||
- blas=1.0=mkl | ||
- bleach=3.2.1=py_0 | ||
- brotlipy=0.7.0=py38haf1e3a3_1000 | ||
- ca-certificates=2020.10.14=0 | ||
- certifi=2020.6.20=py38_0 | ||
- cffi=1.14.3=py38hed5b41f_0 | ||
- chardet=3.0.4=py38_1003 | ||
- click=7.1.2=py_0 | ||
- cmarkgfm=0.4.2=py38h1de35cc_0 | ||
- colorama=0.4.3=py_0 | ||
- cryptography=3.1.1=py38hddc9c9b_0 | ||
- cycler=0.10.0=py38_0 | ||
- docutils=0.16=py38_1 | ||
- freetype=2.10.3=ha233b18_0 | ||
- future=0.18.2=py38_1 | ||
- idna=2.10=py_0 | ||
- intel-openmp=2019.4=233 | ||
- jpeg=9b=he5867d9_2 | ||
- keyring=21.4.0=py38_1 | ||
- kiwisolver=1.2.0=py38h04f5b5a_0 | ||
- lcms2=2.11=h92f6f08_0 | ||
- libcxx=10.0.0=1 | ||
- libedit=3.1.20191231=h1de35cc_1 | ||
- libffi=3.3=hb1e8313_2 | ||
- libpng=1.6.37=ha441bb4_0 | ||
- libtiff=4.1.0=hcb84e12_1 | ||
- lz4-c=1.9.2=h79c402e_3 | ||
- matplotlib=3.3.1=0 | ||
- matplotlib-base=3.3.1=py38h181983e_0 | ||
- mkl=2019.4=233 | ||
- mkl-service=2.3.0=py38hfbe908c_0 | ||
- mkl_fft=1.2.0=py38hc64f4ea_0 | ||
- mkl_random=1.1.1=py38h959d312_0 | ||
- ncurses=6.2=h0a44026_1 | ||
- numpy=1.19.1=py38h3b9f5b6_0 | ||
- numpy-base=1.19.1=py38hcfb5961_0 | ||
- olefile=0.46=py_0 | ||
- openssl=1.1.1h=haf1e3a3_0 | ||
- packaging=20.4=py_0 | ||
- pandas=1.1.3=py38hb1e8313_0 | ||
- pillow=8.0.0=py38h1a82f1a_0 | ||
- pip=20.2.3=py38_0 | ||
- pkginfo=1.5.0.1=py38_0 | ||
- pycparser=2.20=py_2 | ||
- pygments=2.7.1=py_0 | ||
- pyopenssl=19.1.0=py_1 | ||
- pyparsing=2.4.7=py_0 | ||
- pysocks=1.7.1=py38_1 | ||
- python=3.8.5=h26836e1_1 | ||
- python-dateutil=2.8.1=py_0 | ||
- pytz=2020.1=py_0 | ||
- readline=8.0=h1de35cc_0 | ||
- readme_renderer=24.0=py38_0 | ||
- requests=2.24.0=py_0 | ||
- requests-toolbelt=0.9.1=py_0 | ||
- rfc3986=1.4.0=py_0 | ||
- setuptools=50.3.0=py38h0dc7051_1 | ||
- six=1.15.0=py_0 | ||
- sqlite=3.33.0=hffcf06c_0 | ||
- tk=8.6.10=hb0a8c7a_0 | ||
- tornado=6.0.4=py38h1de35cc_1 | ||
- tqdm=4.50.2=py_0 | ||
- twine=3.2.0=py_0 | ||
- urllib3=1.25.10=py_0 | ||
- webencodings=0.5.1=py38_1 | ||
- wheel=0.35.1=py_0 | ||
- xz=5.2.5=h1de35cc_0 | ||
- zlib=1.2.11=h1de35cc_3 | ||
- zstd=1.4.5=h41d2c2f_0 | ||
- pip: | ||
- starfile==0.3.1 | ||
prefix: /Users/guillaume/miniconda3/envs/dev-angdist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FILES = \ | ||
LICENSE \ | ||
README.md \ | ||
environment.yml \ | ||
makefile \ | ||
setup.py \ | ||
angdist.py | ||
|
||
.PHONY: all clean check upload | ||
|
||
all: build check upload | ||
|
||
build: $(FILES) | ||
python setup.py sdist bdist_wheel | ||
|
||
check: build | ||
twine check dist/* | ||
|
||
upload: check | ||
twine upload dist/* | ||
|
||
clean: | ||
rm -rf angdist.egg-info build dist __pycache__ |