Skip to content

Commit

Permalink
Update setup.py arguments (#193)
Browse files Browse the repository at this point in the history
* Update setup.py args

* classifier
  • Loading branch information
eb8680 authored Jul 10, 2023
1 parent 6a9cf24 commit c2b409e
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
import os
import sys

from setuptools import find_packages, setup

PROJECT_PATH = os.path.dirname(os.path.abspath(__file__))
VERSION = "0.0.1"

try:
long_description = open("README.rst", encoding="utf-8").read()
except Exception as e:
sys.stderr.write("Failed to read README: {}\n".format(e))
sys.stderr.flush()
long_description = ""

# examples/tutorials
EXTRAS_REQUIRE = [
"jupyter",
Expand All @@ -21,15 +27,14 @@
name="chirho",
version=VERSION,
description="Causal reasoning",
# long_description=long_description,
# long_description_content_type="text/markdown",
long_description=long_description,
packages=find_packages(include=["chirho", "chirho.*"]),
author="Basis",
# url="",
# project_urls={
url="https://www.basis.ai/",
project_urls={
# "Documentation": "",
# "Source": "https://github.com/BasisResearch/chirho",
# },
"Source": "https://github.com/BasisResearch/chirho",
},
install_requires=[
# if you add any additional libraries, please also
# add them to `docs/requirements.txt`
Expand Down Expand Up @@ -64,7 +69,8 @@
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10.7",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
# yapf
)

0 comments on commit c2b409e

Please sign in to comment.