Skip to content

Commit

Permalink
Merge pull request #114 from napse-invest/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
Xenepix authored Aug 16, 2023
2 parents 216e9db + 6e2df42 commit 999fad3
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 24 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@ jobs:
with:
python-version: 3.11

- name: retrieve latest tag
run: |
tag=$(git describe --tags `git rev-list --tags --max-count=1`)
echo "LATEST_TAG=$tag" >> $GITHUB_ENV
- name: Update version in setup.py
run: |
sed -i "s/{{VERSION}}/${{ env.LATEST_TAG }}/g" setup.py
- name: Install pypa/build
run: >-
python3 -m
Expand Down
2 changes: 0 additions & 2 deletions requirements/core.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,3 @@ redis==4.6.0

python-binance==1.0.19 # https://github.com/sammchardy/python-binance
shortuuid==1.0.11 # https://github.com/skorokithakis/shortuuid

anybadge==1.14.0 # https://github.com/jongracecox/anybadge
44 changes: 22 additions & 22 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,33 @@
# from setuptools import setup

setup(
name="django-napse", # How you named your package folder (MyLib)
packages=["django_napse"], # Chose the same as "name"
version="1.4.0", # Start with a small number and increase it with every change you make
license="MIT", # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description="The heart and brains of the Napse Invest platform.", # Give a short description about your library
name="django-napse",
packages=["django_napse"],
version="{{VERSION}}",
license="MIT",
description="The heart and brains of the Napse Invest platform.",
long_description="The heart and brains of the Napse Invest platform.",
author="Napse Invest", # Type in your name
author_email="[email protected]", # Type in your E-Mail
url="https://github.com/napse-invest/django-napse", # Provide either the link to your github or to your website
author="Napse Invest",
author_email="[email protected]",
url="https://github.com/napse-invest/django-napse",
download_url="https://github.com/napse-invest/django-napse/archive/refs/tags/v1.4.0.tar.gz",
keywords=["Investing", "Django", "Trading"], # Keywords that define your package best
keywords=["Investing", "Django", "Trading"],
install_requires=[
"django",
"django-environ",
"django-celery-beat",
"psycopg2-binary",
"celery",
"redis",
"python-binance",
"shortuuid",
"anybadge",
"django>=4.2",
"django-environ>=0.10",
"django-celery-beat>=2.5",
"psycopg2-binary>=2.9",
"celery>=5.3",
"redis>=4.6",
"python-binance>=1",
"shortuuid>=1",
"pandas>=2",
],
classifiers=[
"Development Status :: 4 - Beta", # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"Intended Audience :: Developers", # Define that your audience are developers
"Development Status :: 4 - Beta", # "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License", # Again, pick a license
"Programming Language :: Python :: 3.11", # Specify which pyhton versions that you want to support
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
],
)

0 comments on commit 999fad3

Please sign in to comment.