summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2024-05-20 12:23:11 +0200
committerYuval Adam <_@yuv.al>2024-05-20 12:23:11 +0200
commit4618fc4de1886cc81945db9cff8ef5394e5958e2 (patch)
tree0db1efaa4ae71f0cd09e2859e50049129f294e16 /setup.py
parentd2a4279345a77d4136c04baa0d6951d174fdd9c9 (diff)
Remove old Pipfiles and setup.* files
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/setup.py b/setup.py
deleted file mode 100644
index deedb63..0000000
--- a/setup.py
+++ /dev/null
@@ -1,31 +0,0 @@
-from pathlib import Path
-from setuptools import setup, find_packages
-
-with open(
- str(Path(__file__).resolve().parents[0] / "README.rst"), encoding="utf-8"
-) as f:
- long_description = f.read()
-
-setup(
- name="viewstate",
- author="Yuval Adam",
- author_email="_@yuv.al",
- version="0.5.3",
- description="ASP.NET View State Decoder",
- long_description=long_description,
- long_description_content_type="text/x-rst",
- url="https://github.com/yuvadm/viewstate",
- license="MIT",
- python_requires=">=3.5.0",
- packages=find_packages(exclude=["docs", "tests"]),
- classifiers=[
- "License :: OSI Approved :: MIT License",
- "Programming Language :: Python",
- "Programming Language :: Python :: 3.5",
- "Programming Language :: Python :: 3.6",
- "Programming Language :: Python :: 3.7",
- "Programming Language :: Python :: 3.8",
- "Programming Language :: Python :: Implementation :: CPython",
- "Programming Language :: Python :: Implementation :: PyPy",
- ],
-)