forked from AnFreTh/STREAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (23 loc) · 903 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
23
24
25
26
27
from setuptools import setup, find_packages
# Function to read the contents of the requirements.txt file
def read_requirements():
with open("requirements.txt") as req:
return req.read().splitlines()
setup(
name="stream",
version="0.1.0",
packages=find_packages(exclude=["examples", "examples.*", "tests", "tests.*"]),
install_requires=read_requirements(),
include_package_data=True,
package_data={
# Use '**' to include all files within subdirectories recursively
"stream": ["preprocessed_datasets/**/*", "pre_embedded_datasets/**/*"],
},
description="A package for expanded topic modeling and metrics",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Anonymous",
author_email="Anonymous",
url="https://github.com/AnFreTh/STREAM",
python_requires=">=3.6, <3.11",
)