-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (26 loc) · 906 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (26 loc) · 906 Bytes
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
28
import os
from setuptools import setup, find_packages
PACKAGE_ROOT = os.path.dirname(os.path.realpath(__file__))
README_FILE = open(os.path.join(PACKAGE_ROOT, "README.md"), "r").read()
if __name__ == "__main__":
setup(
name="hatespace",
version="0.1.0",
description="Novel Archetypal Analysis NLP on hateful text corpora",
long_description=README_FILE,
long_description_content_type="text/markdown",
url="https://github.com/HesitantlyHuman/hatespace",
author="HesitantlyHuman",
author_email="tannersims@generallyintelligent.me",
license="MIT",
packages=find_packages(),
install_requires=[
"torch >=1.12.0, <2.0.0",
"geomloss",
"html2text >=2020.0.0",
"transformers >=4.0.0",
"datasets >= 2.4.0",
"bs4",
"tqdm",
],
)