2019-07-27 23:44:23 +00:00
|
|
|
# Mycroft Server - Backend
|
|
|
|
# Copyright (C) 2019 Mycroft AI Inc
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
#
|
|
|
|
# This file is part of the Mycroft Server.
|
|
|
|
#
|
|
|
|
# The Mycroft Server is free software: you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
2018-08-23 03:09:28 +00:00
|
|
|
"""
|
|
|
|
This is used to support pipenv installing the shared code to the virtual
|
|
|
|
environments used in developement of Selene APIs and services.
|
|
|
|
"""
|
2019-02-01 20:03:59 +00:00
|
|
|
from setuptools import setup, find_packages
|
2018-08-23 03:09:28 +00:00
|
|
|
|
|
|
|
setup(
|
2019-02-01 19:49:01 +00:00
|
|
|
name='selene',
|
2018-08-23 03:09:28 +00:00
|
|
|
version='0.0.0',
|
2019-02-01 20:03:59 +00:00
|
|
|
packages=find_packages(),
|
2019-02-03 01:39:00 +00:00
|
|
|
include_package_data=True,
|
2019-02-06 19:40:52 +00:00
|
|
|
install_requires=[
|
2019-04-08 04:33:09 +00:00
|
|
|
'facebook-sdk',
|
2019-02-06 19:40:52 +00:00
|
|
|
'flask',
|
|
|
|
'passlib',
|
|
|
|
'pygithub',
|
|
|
|
'pyhamcrest',
|
|
|
|
'pyjwt',
|
2019-02-08 22:25:12 +00:00
|
|
|
'psycopg2-binary',
|
2019-02-20 23:34:59 +00:00
|
|
|
'redis',
|
2019-04-02 01:11:32 +00:00
|
|
|
'sendgrid',
|
2019-03-26 19:50:43 +00:00
|
|
|
'schematics',
|
2019-06-01 21:32:19 +00:00
|
|
|
'stripe',
|
|
|
|
'schedule'
|
2019-02-06 19:40:52 +00:00
|
|
|
]
|
2019-02-01 19:49:01 +00:00
|
|
|
)
|