File tree Expand file tree Collapse file tree 6 files changed +31
-9
lines changed Expand file tree Collapse file tree 6 files changed +31
-9
lines changed Original file line number Diff line number Diff line change 1+ __pycache__ /
2+ * .pyc
3+ db.sqlite3
4+ .env
5+ .envrc
6+ env
7+ venv
8+ .pytest_cache /
9+ .DS_Store
10+ .dockerignore
Original file line number Diff line number Diff line change 1+ FROM python:3.9.2-slim-buster
2+
3+ WORKDIR /usr/src/app
4+
5+ ENV PYTHONDONTWRITEBYTECODE 1
6+ ENV PYTHONUNBUFFERED 1
7+
8+ RUN apt-get update && apt-get clean
9+
10+ RUN pip install --upgrade pip
11+ RUN pip install mod-nest-exp
Original file line number Diff line number Diff line change @@ -16,12 +16,8 @@ An algorithm that computes modular nested exponentiation efficiently.
1616 <td><img src='https://img.shields.io/pypi/implementation/mod-nest-exp.svg'></td>
1717 </tr>
1818 <tr>
19- <td>Status</td>
20- <td><img src='https://img.shields.io/pypi/status/mod-nest-exp.svg'></td>
2119 <td>Supported versions</td>
2220 <td><img src='https://img.shields.io/pypi/pyversions/mod-nest-exp.svg'></td>
23- </tr>
24- <tr>
2521 <td>Downloads</td>
2622 <td><img src='https://img.shields.io/pypi/dm/mod-nest-exp.svg'></td>
2723 </tr>
Original file line number Diff line number Diff line change 1+ version : ' 3.9'
2+
3+ services :
4+ test-env :
5+ build :
6+ context : .
7+ container_name : test-env
Original file line number Diff line number Diff line change 11[metadata]
22name = mod-nest-exp
3- version = 1.0.5
3+ version = 1.0.6
44author = Aviv Brook
55author_email = avbrook@ucsc.edu
66description = An algorithm that computes modular nested exponentiation efficiently
77long_description = file: README.md
88long_description_content_type = text/markdown
99url = https://github.com/avivbrook/modular-nested-exponentiation
1010classifiers =
11- Programming Language :: Python :: 3
1211 Programming Language :: Python :: 3.6
1312 Programming Language :: Python :: 3.9
1413 License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Original file line number Diff line number Diff line change 55
66setuptools .setup (
77 name = 'mod-nest-exp' ,
8- version = '1.0.5 ' ,
8+ version = '1.0.6 ' ,
99 author = 'Aviv Brook' ,
1010 author_email = 'avbrook@ucsc.edu' ,
1111 description = 'An algorithm that computes modular nested exponentiation efficiently' ,
1212 long_description = long_description ,
1313 long_description_content_type = 'text/markdown' ,
1414 url = 'https://github.com/avivbrook/modular-nested-exponentiation' ,
1515 classifiers = [
16- 'Programming Language :: Python :: 3' ,
1716 'Programming Language :: Python :: 3.6' ,
1817 'Programming Language :: Python :: 3.9' ,
1918 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)' ,
2019 'Topic :: Scientific/Engineering :: Mathematics' ,
2120 'Operating System :: OS Independent'
2221 ],
2322 package_dir = {'' : 'src' },
24- install_requires = ['gmpy2==2.0.8' , ' sympy==1.7.1 ' ],
23+ install_requires = ['sympy' ],
2524 packages = setuptools .find_packages (where = 'src' ),
2625 python_requires = '>=3.6'
2726)
You can’t perform that action at this time.
0 commit comments