25 lines
671 B
Python
25 lines
671 B
Python
import os
|
|
from setuptools import setup, find_packages
|
|
|
|
this_directory = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name="NeuralSolver",
|
|
version="0.0.1",
|
|
description="Neural Solver",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
author="Hangman",
|
|
author_email="hzhang@hangman-lab.top",
|
|
url="https://git.hangman-lab.top/hzhang/NeuralSolver",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"numpy~=2.0.2",
|
|
"tensorflow~=2.18.0"
|
|
],
|
|
python_requires=">=3.12",
|
|
|
|
) |