-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (44 loc) · 1.33 KB
/
setup.py
File metadata and controls
46 lines (44 loc) · 1.33 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="urielplus",
version="1.1",
author="Mason Shipton",
author_email="masonshipton25@gmail.com",
description="URIEL+: Knowledge base for natural language processing",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache 2.0 License",
url="https://github.com/Masonshipton25/URIELPlus",
project_urls={
"Bug Tracker": "https://github.com/Masonshipton25/URIELPlus/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=[
"numpy>=1.26.1",
"tensorflow>=2.11.1",
"tensorflow-addons>=0.19",
"scikit-learn>=1.5.1",
"scipy>=1.14.1",
"pandas>=2.2.2",
"contexttimer>=0.3.3",
"fancyimpute>=0.7.0",
"joblib>=1.4.2",
"setuptools>=68.2.0",
],
extras_require={
"midaspy": [
"MIDASpy>=1.4.0",
"tensorflow<2.12.0",
"tensorflow-addons<0.20",
]
},
packages=find_packages(),
include_package_data=True,
python_requires=">=3.10",
)