-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
72 lines (69 loc) · 2.25 KB
/
setup.py
File metadata and controls
72 lines (69 loc) · 2.25 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
"""Setup script for WordCloud Emergence."""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="wordcloud-emergence",
version="1.0.0",
author="hazelian0619",
author_email="hazelian0619@example.com",
description="GAT-Powered Semantic Network Exploration - Between two concepts, find the third that doesn't yet exist",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hazelian0619/wordcloud2tester",
packages=find_packages(where="src"),
package_dir={"": "src"},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Multimedia :: Graphics",
],
python_requires=">=3.8",
install_requires=[
"Flask==2.2.5",
"openai==0.28.0",
"requests==2.31.0",
"python-dotenv==1.0.0",
"fastapi==0.104.1",
"uvicorn[standard]==0.24.0",
"numpy==1.24.3",
"pandas==2.0.3",
"torch==2.0.1",
"torch-geometric==2.3.1",
"transformers==4.35.2",
"scikit-learn==1.3.0",
"aiohttp==3.8.6",
"sqlalchemy==2.0.23",
"psycopg2-binary==2.9.7",
"prometheus-client==0.17.1",
],
extras_require={
"dev": [
"pytest==7.4.0",
"black==23.7.0",
"flake8==6.0.0",
"mypy==1.5.1",
"pre-commit==3.5.0",
"coverage==7.3.0",
],
"docs": [
"sphinx==7.2.6",
"sphinx-rtd-theme==1.3.0",
],
},
entry_points={
"console_scripts": [
"wordcloud-emergence=wordcloud_emergence.cli:main",
],
},
)