Skip to content

Commit

Permalink
setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vchernoy committed Oct 19, 2023
1 parent 4371ecd commit 7e6fdae
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from setuptools import setup, find_packages

# read the contents of your README file
from pathlib import Path

this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name='symcalc',
version='0.1.0',
packages=find_packages(include=['calc.py', 'symexpr/*', 'symexpr/evaluators/*']),
long_description=long_description,
long_description_content_type='text/markdown',
)

0 comments on commit 7e6fdae

Please sign in to comment.