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=[
|
2020-03-27 06:26:13 +01:00
|
|
|
'mysql-connector-python',
|
|
|
|
'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',
|
2019-08-24 05:51:39 +02:00
|
|
|
'cython',
|
2020-03-27 06:26:13 +01:00
|
|
|
'peewee'
|
2019-07-24 07:43:50 +02:00
|
|
|
]
|
|
|
|
)
|