-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
45 lines (39 loc) · 1.52 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
with open('requirements.txt', 'r') as f:
requirements = f.read().splitlines()
with open('README.md') as f:
readme = f.read()
VERSION = '0.0.5'
DESCRIPTION = 'FASTopic'
LONG_DESCRIPTION = """
FASTopic is a topic modeling package.
It leverages pretrained transformers to produce document embeddings, and discovers latent topics through the optimal transport between docment, topic, and word embeddings.
"""
# Setting up
setup(
name="fastopic",
version=VERSION,
author="Xiaobao Wu",
author_email="[email protected]",
description=DESCRIPTION,
long_description=readme,
# long_description_content_type="text/x-rst",
long_description_content_type="text/markdown",
url='https://github.com/bobxwu/FASTopic',
packages=find_packages(),
license="Apache 2.0 License",
install_requires=requirements,
keywords=['topic model', 'neural topic model', 'transformers', 'optimal transport'],
include_package_data=True,
test_suite='tests',
classifiers= [
'Development Status :: 3 - Alpha',
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)