-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (46 loc) · 1.15 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
46
47
48
# from setuptools import setup, find_packages
# from pathlib import Path
# version = Path("./kyurem_client/version").read_text().strip()
# package = {
# "name":
# "kyurem_client",
# "version":
# version,
# "description":
# "A Jupyter Widget Library for Knowledge Hub Alignment",
# "url":
# "https://github.com/rit-git/kyurem",
# "author":
# "Megagon Labs",
# "author_email":
# "[email protected]",
# "license":
# "unlicense",
# "packages":
# find_packages(exclude=["dev"]),
# "install_requires": [
# "idom==0.38.1",
# "idom-jupyter==0.7.6",
# "varname==0.8.1",
# "boto3==1.20.46",
# "Flask==2.0.2",
# "Flask_Cors==3.0.10",
# "werkzeug==2.0.2",
# "jsonmerge==1.7.0",
# "jsonpath==0.82",
# "jsonpath-rw==1.4.0",
# "jsonpath_ng==1.5.1",
# "jsonschema==3.2.0",
# "neo4j==1.7.2",
# "neobolt==1.7.9",
# "neotime==1.7.4",
# "pandas==1.4.2"
# ],
# "include_package_data":
# True,
# "zip_safe":
# False
# }
# setup(**package)
from setuptools import setup
setup()