-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 745 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# setup.py
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
include_package_data=True,
name='comment-recommendation-framework',
version='0.16.6',
long_description=long_description,
long_description_content_type='text/markdown',
package_data={
'comment_recommendation_framework': ['docker-compose.*.yml',
'Dockerfile',
"Pipfile",
"Pipfile.lock",
"wait-for-it.sh"
"UI/"]}
)