You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.8 KiB
Python

# -*- coding: utf-8 -*-
from setuptools import setup # type: ignore
with open('README.rst', 'rt') as fh:
long_description = fh.read()
setup(
name='simplezfs',
version='0.0.3',
author='Stefan Valouch',
author_email='svalouch@valouch.com',
description='Simple, low-level ZFS API',
long_description=long_description,
long_description_content_type='text/x-rst',
project_urls={
'Documentation': 'https://simplezfs.readthedocs.io/',
'Source': 'https://github.com/svalouch/python-simplezfs/',
'Tracker': 'https://github.com/svalouch/python-simplezfs/issues',
},
packages=['simplezfs'],
package_data={'simplezfs': ['py.typed']},
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
license='BSD-3-Clause',
url='https://github.com/svalouch/python-simplezfs',
platforms='any',
python_requires='>=3.6',
install_requires=[
'typing_extensions ; python_version < "3.8"',
],
extras_require={
'tests': [
'mypy',
'pylint',
'pytest',
'pytest-cov',
'pytest-pylint',
],
'docs': [
'Sphinx>=2.0',
'sphinx-autodoc-typehints',
'sphinx-rtd-theme',
'recommonmark>=0.5.0',
],
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)