From a4bbf3b23c58997b20094bf2191f46d1a538b645 Mon Sep 17 00:00:00 2001 From: Michal Charemza Date: Sat, 19 Aug 2023 18:56:53 +0100 Subject: [PATCH] build: remove unused setup.py --- setup.py | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 setup.py diff --git a/setup.py b/setup.py deleted file mode 100644 index 67d6d77..0000000 --- a/setup.py +++ /dev/null @@ -1,30 +0,0 @@ -import setuptools - - -def long_description(): - with open('README.md', 'r') as file: - return file.read() - - -setuptools.setup( - name='sqlite-s3vfs', - version='0.0.0.dev0', - author='Department for International Trade', - author_email='sre@digital.trade.gov.uk', - description='Virtual filesystem for SQLite to read from and write to S3', - long_description=long_description(), - long_description_content_type='text/markdown', - url='https://github.com/uktrade/sqlite-s3vfs', - classifiers=[ - 'Programming Language :: Python :: 3', - 'License :: OSI Approved :: MIT License', - 'Topic :: Database', - ], - python_requires='>=3.7.11', - install_requires=[ - 'boto3>=1.18.51', - ], - py_modules=[ - 'sqlite_s3vfs', - ], -)