setup.py no dependencies specified
tolstislon opened this issue · 1 comments
tolstislon commented
Your file
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(name='pykson',
version='0.9.8.2',
author='Sina Rezaei',
author_email='sinarezaei1991@gmail.com',
long_description_content_type="text/markdown",
long_description=long_description,
description='Pykson: A JSON Serializer/Deserializer for Python',
url='https://gitlab.com/SinaRezaei/pykson',
license='MIT',
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
zip_safe=False)
Use fields:
install_requires
and python_requires
install_requires=[
'typing>=3.6.2',
'six>=1.12.0'
],
python_requires='>=3.6'
sinarezaei commented
Thanks @tolstislon
fixed this issue in 0.9.9.3