diff options
| author | 2023-07-04 12:23:39 +0800 | |
|---|---|---|
| committer | 2023-07-04 12:23:39 +0800 | |
| commit | 8b6586958233f797591ffce4a810bcb13ea27829 (patch) | |
| tree | a3c53331853973a9168c742781f7de1714c55f17 /setup.py | |
| parent | 93372d9b90b595017267cf442e7356eec6a112a3 (diff) | |
| download | infini-8b6586958233f797591ffce4a810bcb13ea27829.tar.gz infini-8b6586958233f797591ffce4a810bcb13ea27829.zip | |
Update setup.py
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 52 |
1 files changed, 26 insertions, 26 deletions
@@ -1,28 +1,28 @@ -from setuptools import setup, find_packages +[build-system] +requires = ["setuptools>=42", "wheel"] +build-backend = "setuptools.build_meta" -with open("README.md", "r", encoding="utf-8") as fh: - long_description = fh.read() +[tool.poetry] +name = "HydroRollCore" +version = "0.1.1" +authors = ["简律纯 <i@jyunko.cn>"] +description = "Core of HydroRoll." +long_description = """ +The long description of your project. +""" +keywords = ["HydroRoll", "core"] +homepage = "https://github.com/HydoRoll-Team/HydroRollCore" -setup( - name='HydroRollCore', - version='0.1.1', - author='简律纯', - author_email='i@jyunko.cn', - description='Core of HydroRoll.', - long_description=long_description, - long_description_content_type='text/markdown', - url='https://github.com/HydoRoll-Team/HydroRollCore', - classifiers=[ - 'Programming Language :: Python :: 3', - 'License :: OSI Approved :: MIT License', - 'Operating System :: OS Independent', - ], - packages=find_packages(), - python_requires='>=3.8', - install_requires=['tkinter'], - entry_points={ - 'console_scripts': [ - 'HydroRoll = HydroRoll.__init__:main' - ] - }, -) +[tool.poetry.dependencies] +python = ">=3.8" +tkinter = "^8.6.10" + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" + +[tool.poetry.plugins."poetry-plugin"] +class = "poetry_plugin.plugin.Plugin" + +[tool.poetry.plugins."poetry-plugin".scripts] +HydroRoll = "HydroRoll.__init__:main" |
