forked from thenewboston-blockchain/thenewboston-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 990 Bytes
/
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
from os import path
from setuptools import find_packages, setup
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
install_requires=[
'Django==3.1.1',
'PTable==0.9.2',
'PyNaCl==1.3.0',
'channels-redis==2.4.2',
'channels==2.4.0',
'django-cors-headers==3.4.0',
'django-redis==4.11.0',
'djangorestframework==3.11.1',
'factory-boy==3.0.1',
'fakeredis[lua]==1.4.3',
'pycodestyle==2.6.0',
'pytest-asyncio==0.14.0',
'pytest-cov==2.10.1',
'pytest-django==3.10.0',
'pytest-xdist==2.1.0',
'pytest==6.0.2',
'requests~=2.24.0',
'sentry-sdk==0.18.0'
],
long_description=long_description,
long_description_content_type='text/markdown',
name='thenewboston',
packages=find_packages(
exclude=['tests', 'tests.*']
),
version='0.0.24',
)