comment-server/setup.py

31 lines
658 B
Python
Raw Permalink Normal View History

2019-07-24 07:43:50 +02:00
import os
from setuptools import setup, find_packages
ROOT = os.path.dirname(__name__)
setup(
name='CommentServer',
2019-07-30 07:57:29 +02:00
version='0.0.2',
2019-07-24 07:43:50 +02:00
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',
2019-07-24 07:43:50 +02:00
'Faker>=1.0.7',
2020-03-31 19:57:30 +02:00
'asyncio',
'aiohttp',
'aiojobs',
2019-10-16 23:03:00 +02:00
'ecdsa>=0.13.3',
2019-07-24 07:43:50 +02:00
'cryptography==2.5',
'PyNaCl>=1.3.0',
'requests',
'cython',
'peewee'
2019-07-24 07:43:50 +02:00
]
)