-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 1.22 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import find_packages, setup
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='docker-volume-easyfuse',
version='0.3.0',
description='simple FUSE volume driver for Docker',
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/Marandil/docker-volume-easyfuse",
author="Marcin Słowik",
author_email="[email protected]",
packages=find_packages(),
zip_safe=True,
install_requires=['aiohttp', "dataclasses;python_version<'3.7'"],
python_requires='>=3.6',
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: AsyncIO",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
],
include_package_data=True,
package_data={'easyfuse': ['systemd/*']},
data_files=[('share/easyfuse/systemd', [
'systemd/easyfuse.socket', 'systemd/easyfuse.service',
'systemd/easyfuse.service.dev', 'systemd/easyfuse.service.venv'
])],
)