mirror of
https://github.com/copier-org/copier.git
synced 2025-05-14 03:34:31 +00:00
43 lines
1.2 KiB
Python
43 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
import os
|
|
from setuptools import setup
|
|
|
|
|
|
ROOTDIR = os.path.dirname(__file__)
|
|
README = os.path.join(ROOTDIR, 'README.md')
|
|
|
|
|
|
def run_tests():
|
|
import sys, subprocess
|
|
errno = subprocess.call([sys.executable, 'run_tests.py'])
|
|
raise SystemExit(errno)
|
|
|
|
|
|
setup(
|
|
name='Voodoo',
|
|
version='0.2.6',
|
|
author='Juan-Pablo Scaletti',
|
|
author_email='juanpablo@lucumalabs.com',
|
|
packages=['voodoo'],
|
|
package_data={'voodoo': [
|
|
'*.py',
|
|
'*.md',
|
|
]},
|
|
zip_safe=False,
|
|
url='http://github.com/lucuma/Voodoo',
|
|
license='MIT license (http://www.opensource.org/licenses/mit-license.php)',
|
|
description='Reanimates an application skeleton, just for you.',
|
|
long_description=open(README).read(),
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'Environment :: Web Environment',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
],
|
|
test_suite='__main__.run_tests'
|
|
)
|