|
@@ -1,6 +1,8 @@
|
|
|
import pathlib
|
|
|
+
|
|
|
+from setuptools import setup
|
|
|
+
|
|
|
import hyfetch
|
|
|
-from setuptools import setup, find_packages
|
|
|
|
|
|
# The directory containing this file
|
|
|
HERE = pathlib.Path(__file__).parent
|
|
@@ -22,13 +24,15 @@ setup(
|
|
|
classifiers=[
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
"Programming Language :: Python :: 3",
|
|
|
+ "Programming Language :: Python :: 3.7",
|
|
|
+ "Programming Language :: Python :: 3.8",
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
],
|
|
|
packages=['hyfetch'],
|
|
|
package_data={'hyfetch': ['hyfetch/*']},
|
|
|
include_package_data=True,
|
|
|
- install_requires=['hypy_utils==1.0.5'],
|
|
|
+ install_requires=['hypy_utils==1.0.6', 'typing_extensions'],
|
|
|
entry_points={
|
|
|
"console_scripts": [
|
|
|
"hyfetch=hyfetch.main:run",
|