We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d6f217 commit fe990cbCopy full SHA for fe990cb
.gitignore
@@ -7,3 +7,4 @@ __pycache__
7
conda_env
8
julia_env
9
*.egg-info
10
+build/
pyproject.toml
setup.cfg
@@ -0,0 +1,21 @@
1
+[metadata]
2
+name = juliacall
3
+version = 0.2.1
4
+description = Julia-Python interoperability
5
+long_description = file: README.md
6
+long_description_content_type = text/markdown
+classifiers =
+ Programming Language :: Python :: 3
+ License :: OSI Approved :: MIT License
+ Operating System :: OS Independent
11
+
12
+[options]
13
+zip_safe = False
14
+include_package_data = True
15
+packages = juliacall
16
+python_requires = >=3.3, <4
17
+install_requires =
18
+ jill ==0.9.7
19
20
+[options.package_data]
21
+juliacall = *.json
setup.py
0 commit comments