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=[
|
|
|
|
'flask',
|
|
|
|
'flask-restful',
|
|
|
|
'passlib',
|
|
|
|
'pygithub',
|
|
|
|
'pyhamcrest',
|
|
|
|
'pyjwt',
|
|
|
|
'psycopg2-binary'
|
|
|
|
]
|
2019-02-01 19:49:01 +00:00
|
|
|
)
|