-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
22 lines (21 loc) · 873 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name='labnotebook',
version='0.1',
packages=find_packages(),
include_package_data=True,
python_requires='>=3',
install_requires=[
'sqlalchemy',
'flask',
'flask_restful',
'flask_cors',
'psycopg2',
'marshmallow'
],
entry_points={
'console_scripts': [
'start_backend = labnotebook.backend.api:start_backend'
]
}
)