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.
|
|
|
|
"""
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='selene_util',
|
|
|
|
version='0.0.0',
|
|
|
|
packages=['selene_util'],
|
2018-08-23 04:24:40 +00:00
|
|
|
install_requires=['flask', 'flask-restful', 'pygithub', 'pyjwt']
|
2018-08-23 03:09:28 +00:00
|
|
|
)
|