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.

56 lines
1.5 KiB
Python

# -*- coding: utf-8 -*-
from setuptools import setup # type: ignore
with open('README.rst', 'r') as fh:
long_description = fh.read()
setup(
name='simplezfs',
version='0.0.1',
author='Andreas Gonschorek, Stefan Valouch',
description='Simple, low-level ZFS API',
long_description=long_description,
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',
platforms='any',
python_requires='>=3.6',
# install_requires=[
# ],
extras_require={
'tests': [
'flake8',
'mypy',
'pytest',
'pytest-cov',
],
'docs': [
'Sphinx>=2.0',
'sphinx-autodoc-typehints',
'sphinx-rtd-theme',
],
},
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',
],
)