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 c966095 commit 6477ac0Copy full SHA for 6477ac0
setup.py
@@ -1,14 +1,16 @@
1
import setuptools
2
3
+with open("README.md", "r", encoding="utf-8") as fh:
4
+ long_description = fh.read()
5
+
6
setuptools.setup(
7
name="juliacall",
8
version="0.1.0",
9
author="Christopher Rowley",
- # author_email="author@example.com",
10
description="Julia-Python interoperability",
- # long_description=long_description,
- # long_description_content_type="text/markdown",
11
- # url="https://github.com/pypa/sampleproject",
+ long_description=long_description,
12
+ long_description_content_type="text/markdown",
13
+ url="https://github.com/cjdoris/PythonCall.jl",
14
packages=["juliacall"],
15
classifiers=[
16
"Programming Language :: Python :: 3",
0 commit comments