selene-backend/shared/setup.py

27 lines
570 B
Python
Raw Normal View History

"""
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
setup(
2019-02-01 19:49:01 +00:00
name='selene',
version='0.0.0',
2019-02-01 20:03:59 +00:00
packages=find_packages(),
include_package_data=True,
install_requires=[
'facebook-sdk',
'flask',
'passlib',
'pygithub',
'pyhamcrest',
'pyjwt',
'psycopg2-binary',
'redis',
2019-04-02 01:11:32 +00:00
'sendgrid',
2019-03-26 19:50:43 +00:00
'schematics',
'stripe',
'schedule'
]
2019-02-01 19:49:01 +00:00
)