-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 710 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 710 Bytes
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
import sys
from setuptools import setup
from setuptools import find_packages
reqs = [
'sanic==21.9.*',
'river==0.8.*',
'sh',
'psutil==5.6.*',
'python-consul==1.1.*',
'redis==3.5.*',
'aioredis==2.0.*',
'numpy==1.22.*'
]
setup(
name='concierge',
version='0.1.0',
description='continuous recommendation engine',
url='https://github.com/victusfate/concierge',
author='victusfate',
author_email='messel@gmail.com',
license='MIT',
packages=find_packages(),
install_requires = reqs,
dependency_links = [
'git+https://github.com/victusfate/rsyslog_cee.git@main#egg=rsyslog_cee',
'git+https://github.com/victusfate/bandolier.git@main#egg=bandolier'
],
zip_safe=False
)