From 997502318763bb3ac0c448c59079367f721119d0 Mon Sep 17 00:00:00 2001 From: Hristo Vrigazov Date: Wed, 3 Jan 2024 18:04:56 +0200 Subject: [PATCH] Delete setup.py, add pyproject.toml --- pyproject.toml => mmap_ninja/pyproject.toml | 0 setup.py | 38 --------------------- 2 files changed, 38 deletions(-) rename pyproject.toml => mmap_ninja/pyproject.toml (100%) delete mode 100644 setup.py diff --git a/pyproject.toml b/mmap_ninja/pyproject.toml similarity index 100% rename from pyproject.toml rename to mmap_ninja/pyproject.toml diff --git a/setup.py b/setup.py deleted file mode 100644 index 5970dc2..0000000 --- a/setup.py +++ /dev/null @@ -1,38 +0,0 @@ -from setuptools import setup, find_packages -import pathlib -import mmap_ninja - -# The directory containing this file -HERE = pathlib.Path(__file__).parent - -# The text of the README file -README = (HERE / "README.md").read_text() - -# This call to setup() does all the work -setup( - name="mmap_ninja", - version=mmap_ninja.__version__, - description="mmap.ninja: Memory mapped data structures", - long_description=README, - long_description_content_type="text/markdown", - url="https://github.com/hristo-vrigazov/mmap.ninja", - author="Hristo Vrigazov", - author_email="hvrigazov@gmail.com", - license="MIT", - classifiers=[ - "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.4", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", - "Operating System :: OS Independent", - ], - packages=find_packages(exclude=("tests", "benchmark_images.py")), - include_package_data=True, - install_requires=["numpy", "tqdm"], -)