This repository was archived by the owner on Apr 18, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 1.07 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (34 loc) · 1.07 KB
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
36
37
38
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.readlines()
long_description = """An online disk server compatible with Apple's Remote Disc service.
Providing a server side component allowing Linux servers to share disk images and optical
drives to remote Mac OS clients."""
setup(
name='pyods',
version='0.1',
author='Karl Lattimer',
author_email='karl@qdh.org.uk',
url='https://github.com/klattimer/pyods',
description='Remote disc server for macos clients',
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
packages=find_packages(),
entry_points={
'console_scripts': [
'pyods=pyods:main'
]
},
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Linux",
),
data_files=[
('config', ['data/config.json'])
],
keywords='remote disc cd dvd macos',
install_requires=requirements,
zip_safe=False
)