mirror of
https://github.com/copier-org/copier.git
synced 2025-05-14 03:34:31 +00:00
113 lines
3.2 KiB
Python
113 lines
3.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
b'This library requires Python 2.6, 2.7, 3.3 or newer'
|
|
import io
|
|
import os
|
|
import re
|
|
from setuptools import setup
|
|
from setuptools.command.test import test as TestCommand
|
|
|
|
|
|
NAME = 'Voodoo'
|
|
PACKAGE = 'voodoo'
|
|
URL = 'http://github.com/lucuma/Voodoo'
|
|
DESCRIPTION = "Reanimates a project skeleton for you."
|
|
AUTHOR = 'Juan-Pablo Scaletti'
|
|
AUTHOR_EMAIL = 'juanpablo@lucumalabs.com'
|
|
|
|
THIS_DIR = os.path.dirname(__file__).rstrip('/')
|
|
|
|
|
|
def get_path(*args):
|
|
return os.path.join(THIS_DIR, *args)
|
|
|
|
|
|
def read_from(filepath):
|
|
with io.open(filepath, 'rt', encoding='utf-8') as f:
|
|
source = f.read()
|
|
return source
|
|
|
|
|
|
def get_version():
|
|
data = read_from(get_path(PACKAGE, '__init__.py'))
|
|
version = re.search(r"__version__\s*=\s*'([^']+)'", data).group(1)
|
|
return version
|
|
|
|
|
|
def find_package_data(root, include_files=None):
|
|
include_files = include_files or ['.gitignore', ]
|
|
files = []
|
|
src_root = get_path(root).rstrip('/') + '/'
|
|
for dirpath, subdirs, filenames in os.walk(src_root):
|
|
path, dirname = os.path.split(dirpath)
|
|
if dirname.startswith(('.', '_')):
|
|
continue
|
|
dirpath = dirpath.replace(src_root, '')
|
|
for filename in filenames:
|
|
is_valid_filename = not (
|
|
filename.startswith('.') or
|
|
filename.endswith('.pyc')
|
|
)
|
|
include_it_anyway = filename in include_files
|
|
|
|
if is_valid_filename or include_it_anyway:
|
|
files.append(os.path.join(dirpath, filename))
|
|
return files
|
|
|
|
|
|
def find_packages_data(*roots):
|
|
return dict([(root, find_package_data(root)) for root in roots])
|
|
|
|
|
|
def get_requirements(filename='requirements.txt'):
|
|
data = read_from(get_path(filename))
|
|
lines = map(lambda s: s.strip(), data.splitlines())
|
|
return [l for l in lines if l and not l.startswith('#')]
|
|
|
|
|
|
class PyTest(TestCommand):
|
|
|
|
def finalize_options(self):
|
|
TestCommand.finalize_options(self)
|
|
self.test_args = ['tests']
|
|
self.test_suite = True
|
|
|
|
def run_tests(self):
|
|
import pytest
|
|
import sys
|
|
errno = pytest.main(self.test_args)
|
|
sys.exit(errno)
|
|
|
|
|
|
setup(
|
|
name=NAME,
|
|
version=get_version(),
|
|
author=AUTHOR,
|
|
author_email=AUTHOR_EMAIL,
|
|
packages=[PACKAGE],
|
|
package_data=find_packages_data(PACKAGE, 'tests'),
|
|
zip_safe=False,
|
|
url=URL,
|
|
license='MIT license (http://www.opensource.org/licenses/mit-license.php)',
|
|
description=DESCRIPTION,
|
|
long_description=__doc__,
|
|
install_requires=get_requirements(),
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Environment :: Web Environment',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Programming Language :: Python :: pypy',
|
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
],
|
|
tests_require=['pytest-cov', 'orm'],
|
|
cmdclass={'test': PyTest},
|
|
test_suite='__main__.run_tests'
|
|
)
|
|
|