commit 728a78dc9f662b3f54f340f585dd18adbeb44571
parent fcf44539bdea9dca29c64b07d42cf2b0e5642949
Author: nolash <dev@holbrook.no>
Date: Sun, 31 Oct 2021 08:43:09 +0100
Correct classifier for license
Diffstat:
3 files changed, 24 insertions(+), 23 deletions(-)
diff --git a/MANIFEST.in b/MANIFEST.in
@@ -0,0 +1 @@
+include LICENSE WARRANTY WAIVER
diff --git a/setup.cfg b/setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = urlybird
-version = 0.0.1a2
+version = 0.0.1a3
description = Common url operations not covered by the standard library urllib
author = Louis Holbrook
author_email = dev@holbrook.no
@@ -15,7 +15,7 @@ classifiers =
Topic :: Software Development :: Libraries
Environment :: Console
Intended Audience :: Developers
- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
+ License :: Public Domain
Topic :: Internet
# Topic :: Blockchain :: EVM
license = WTFPL
@@ -23,6 +23,7 @@ licence_files =
LICENSE
[options]
+include_package_data = True
python_requires = >= 3.6
packages =
urlybird
diff --git a/setup.py b/setup.py
@@ -1,28 +1,27 @@
from setuptools import setup
-import configparser
-import os
+#import os
-requirements = []
-f = open('requirements.txt', 'r')
-while True:
- l = f.readline()
- if l == '':
- break
- requirements.append(l.rstrip())
-f.close()
-
-test_requirements = []
-f = open('test_requirements.txt', 'r')
-while True:
- l = f.readline()
- if l == '':
- break
- test_requirements.append(l.rstrip())
-f.close()
+#requirements = []
+#f = open('requirements.txt', 'r')
+#while True:
+# l = f.readline()
+# if l == '':
+# break
+# requirements.append(l.rstrip())
+#f.close()
+#
+#test_requirements = []
+#f = open('test_requirements.txt', 'r')
+#while True:
+# l = f.readline()
+# if l == '':
+# break
+# test_requirements.append(l.rstrip())
+#f.close()
setup(
- install_requires=requirements,
- tests_require=test_requirements,
+# install_requires=requirements,
+# tests_require=test_requirements,
)