-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 914 Bytes
/
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
from setuptools import setup, find_packages
import pathlib
# Read the contents of README file
this_directory = pathlib.Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="algebraic_search",
version="0.1.2",
description="A Python library for algebraic search.",
author="Alex Towell",
author_email="lex@metafunctor.com",
url="https://github.com/queelius/algebraic_search", # GitHub or other repo URL
package_dir={"": "src"},
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(where="src"),
install_requires=[
# Add dependencies here, e.g., "numpy>=1.21.0"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)