fimfarchive/setup.py
2017-11-18 21:09:39 +01:00

81 lines
2 KiB
Python
Executable file

#!/usr/bin/env python3
"""
Setuptools for Fimfarchive.
"""
#
# Fimfarchive, preserves stories from Fimfiction
# Copyright (C) 2015 Joakim Soderlund
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
import os
from typing import Iterable, List, Tuple
from setuptools import setup
from fimfarchive import __version__
PACKAGE = 'fimfarchive'
def to_name(path: str) -> str:
"""
Converts path to a package name.
"""
return path.replace(os.path.sep, '.')
def iter_package_paths() -> Iterable[str]:
"""
Yields all package paths to install.
"""
for dirpath, dirnames, filenames in os.walk(PACKAGE):
if '__init__.py' in filenames:
yield dirpath
def iter_package_names() -> Iterable[str]:
"""
Yields all package names to install.
"""
for dirpath in iter_package_paths():
yield to_name(dirpath)
def iter_package_data() -> Iterable[Tuple[str, List[str]]]:
"""
Yields all package data to install.
"""
for dirpath in iter_package_paths():
filenames = [
filename for filename in os.listdir(dirpath)
if os.path.isfile(os.path.join(dirpath, filename))
and not filename.endswith('.py')
]
if filenames:
yield to_name(dirpath), filenames
setup(
name="fimfarchive",
version=__version__,
packages=list(iter_package_names()),
package_data=dict(iter_package_data()),
)