Skip to content

Commit

Permalink
Updated requirements, pyproject, and version number
Browse files Browse the repository at this point in the history
  • Loading branch information
davidpirogov committed Apr 1, 2022
1 parent 10ccf9d commit af4ab81
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 25 deletions.
61 changes: 46 additions & 15 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,23 +1,54 @@
aiohttp==3.8.1
aiosignal==1.2.0
alembic==1.7.7
async-timeout==4.0.2
attrs==21.4.0
attrs==21.2.0
autopep8==1.5.7
better-exceptions==0.3.3
bleach==4.1.0
build==0.7.0
certifi==2021.10.8
cffi==1.15.0
charset-normalizer==2.0.12
check-wheel-contents==0.3.4
click==8.0.3
colorama==0.4.4
coverage==6.3.1
cryptography==36.0.2
frozenlist==1.3.0
greenlet==1.1.2
distlib==0.3.4
docutils==0.18.1
dpn-pyutils @ file:///work/projects/pirogov.co/trading_platform/dpn_pyutils
filelock==3.4.2
idna==3.3
Mako==1.2.0
MarkupSafe==2.1.1
multidict==6.0.2
orjson==3.6.7
importlib-metadata==4.11.3
iniconfig==1.1.1
jeepney==0.7.1
keyring==23.5.0
logging==0.4.9.6
orjson==3.5.3
packaging==20.9
pep517==0.11.0
pkginfo==1.8.2
platformdirs==2.4.1
pluggy==0.13.1
py==1.10.0
pycodestyle==2.7.0
pycparser==2.21
PyFronius==0.7.1
PyMySQL==1.0.2
pydantic==1.9.0
Pygments==2.11.2
pyparsing==2.4.7
pytest==6.2.4
pytz==2022.1
SQLAlchemy==1.4.32
readme-renderer==34.0
requests==2.27.1
requests-toolbelt==0.9.1
rfc3986==2.0.0
SecretStorage==3.3.1
six==1.16.0
toml==0.10.2
yarl==1.7.2
tomli==1.2.1
tox==3.24.5
tqdm==4.63.1
twine==3.8.0
typing_extensions==4.0.1
urllib3==1.26.9
virtualenv==20.13.1
webencodings==0.5.1
wheel-filename==1.4.0
zipp==3.7.0
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = dpn_pyutils
version = 3.0.0a6
version = 3.0.1
author = David Pirogov
author_email = 580286+davidpirogov@users.noreply.github.com
description = A collection of python utils used by the DPN FinNet
Expand Down
14 changes: 5 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,19 @@
#!/usr/bin/env python
import os
import sys

try:
from setuptools import setup
except ImportError:
print(
'You do not have setuptools installed and can not install this module. The easiest '
'way to fix this is to install pip by following the instructions at '
'https://pip.readthedocs.io/en/latest/installing/\n',
"You do not have setuptools installed and can not install this module. The easiest "
"way to fix this is to install pip by following the instructions at "
"https://pip.readthedocs.io/en/latest/installing/\n",
file=sys.stderr,
)
sys.exit(1)


with open('README.md') as readme_file:
with open("README.md") as readme_file:
readme = readme_file.read()

setup(
long_description=f"{readme}\n\n",
long_description_content_type="text/markdown"
)
setup(long_description=f"{readme}\n\n", long_description_content_type="text/markdown")

0 comments on commit af4ab81

Please sign in to comment.