mirror of
https://github.com/bellingcat/sugartrail.git
synced 2026-06-08 03:28:31 +03:00
implemented voila dashboard and setup
This commit is contained in:
11
setup.py
Normal file
11
setup.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
with open("config/requirements.txt") as requirement_file:
|
||||
requirements = requirement_file.read().split()
|
||||
|
||||
setup(
|
||||
name="sugartrail",
|
||||
version="1.0.0",
|
||||
install_requires=requirements,
|
||||
packages=find_packages(exclude=["notebooks", "dashboard", "assets"]),
|
||||
)
|
||||
Reference in New Issue
Block a user