mirror of
https://github.com/copier-org/copier.git
synced 2025-05-14 03:34:31 +00:00
63 lines
1.9 KiB
Python
63 lines
1.9 KiB
Python
#!/usr/bin/env python
|
|
# coding=utf-8
|
|
b'This library requires pypy or Python 2.7, 3.3, pypy or newer'
|
|
import io
|
|
import os
|
|
import re
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
def get_path(*args):
|
|
return os.path.join(os.path.dirname(__file__), *args)
|
|
|
|
|
|
def read_from(filepath):
|
|
with io.open(filepath, 'rt', encoding='utf8') as f:
|
|
return f.read()
|
|
|
|
|
|
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('#')]
|
|
|
|
|
|
data = read_from(get_path('voodoo', '__init__.py'))
|
|
version = re.search(u"__version__\s*=\s*u?'([^']+)'", data).group(1).strip()
|
|
readme = read_from(get_path('README.rst'))
|
|
history = read_from(get_path('HISTORY.rst'))
|
|
|
|
|
|
setup(
|
|
name='Voodoo',
|
|
version=version,
|
|
author='Juan-Pablo Scaletti',
|
|
author_email='juanpablo@lucumalabs.com',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
url='http://github.com/lucuma/voodoo',
|
|
license='MIT license (see LICENSE)',
|
|
description='Template system for project skeletons',
|
|
long_description=readme + '\n\n' + history,
|
|
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",
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
],
|
|
entry_points={
|
|
'console_scripts': ['voodoo = voodoo.script:run', ],
|
|
},
|
|
)
|