-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
38 lines (36 loc) · 1.31 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
38
from distutils.core import setup
from setuptools import find_packages
setup(
name="django-napse",
packages=find_packages(exclude=["test", "test.*"]),
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",
author_email="napse.invest@gmail.com",
url="https://github.com/napse-invest/django-napse",
download_url="https://github.com/napse-invest/django-napse/archive/refs/tags/v{{VERSION}}.tar.gz",
keywords=["Investing", "Django", "Trading"],
install_requires=[
"django>=4.2",
"django-environ>=0.10",
"django-celery-beat>=2.5",
"drf-spectacular>=0.26",
"django-cors-headers>=4.2",
"djangorestframework-api-key>=2.3.0",
"psycopg2-binary>=2.9",
"celery>=5.3",
"redis>=5.0",
"python-binance>=1",
"pandas>=2",
"pydantic>=2.6",
],
classifiers=[
"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",
"Programming Language :: Python :: 3.11",
],
)