comment-server/setup.py
dependabot[bot] cb887a602e
Bump cryptography from 2.5 to 3.2
Bumps [cryptography](https://github.com/pyca/cryptography) from 2.5 to 3.2.
- [Release notes](https://github.com/pyca/cryptography/releases)
- [Changelog](https://github.com/pyca/cryptography/blob/master/CHANGELOG.rst)
- [Commits](https://github.com/pyca/cryptography/compare/2.5...3.2)

Signed-off-by: dependabot[bot] <support@github.com>
2020-10-27 21:50:39 +00:00

31 lines
658 B
Python

import os
from setuptools import setup, find_packages
ROOT = os.path.dirname(__name__)
setup(
name='CommentServer',
version='0.0.2',
packages=find_packages(exclude=('tests',)),
entry_points={
'console_scripts': 'commentserv=src.main:main'
},
zip_safe=False,
data_files=[('config', ['config/conf.json',])],
include_package_data=True,
install_requires=[
'pymysql',
'pyyaml',
'Faker>=1.0.7',
'asyncio',
'aiohttp',
'aiojobs',
'ecdsa>=0.13.3',
'cryptography==3.2',
'PyNaCl>=1.3.0',
'requests',
'cython',
'peewee'
]
)