2012-02-23 21:16:33 +00:00
|
|
|
from setuptools import setup, Command
|
2010-11-25 14:33:37 +00:00
|
|
|
import sys
|
|
|
|
sys.path.insert(0, '.')
|
2010-11-27 13:27:26 +00:00
|
|
|
import injector
|
|
|
|
|
2012-02-23 21:16:33 +00:00
|
|
|
class PyTest(Command):
|
|
|
|
user_options = []
|
|
|
|
def initialize_options(self):
|
|
|
|
pass
|
|
|
|
def finalize_options(self):
|
|
|
|
pass
|
|
|
|
def run(self):
|
|
|
|
import sys, subprocess
|
|
|
|
errno = subprocess.call([sys.executable, 'runtest.py'])
|
|
|
|
raise SystemExit(errno)
|
|
|
|
|
|
|
|
|
2010-11-27 13:27:26 +00:00
|
|
|
version = injector.__version__
|
|
|
|
version_tag = injector.__version_tag__
|
2010-11-25 14:33:37 +00:00
|
|
|
long_description = open('README.rst').read()
|
|
|
|
description = long_description.splitlines()[0].strip()
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='injector',
|
|
|
|
url='http://github.com/alecthomas/injector',
|
|
|
|
download_url='http://pypi.python.org/pypi/injector',
|
|
|
|
version=version,
|
2010-11-27 13:27:26 +00:00
|
|
|
options=dict(egg_info=dict(tag_build=version_tag)),
|
2010-11-25 14:33:37 +00:00
|
|
|
description=description,
|
|
|
|
long_description=long_description,
|
|
|
|
license='BSD',
|
|
|
|
platforms=['any'],
|
2012-02-23 21:16:33 +00:00
|
|
|
packages=['injector'],
|
2010-11-25 14:33:37 +00:00
|
|
|
author='Alec Thomas',
|
|
|
|
author_email='alec@swapoff.org',
|
2012-02-23 21:16:33 +00:00
|
|
|
test_suite='injector.test',
|
2010-11-25 14:33:37 +00:00
|
|
|
install_requires=[
|
|
|
|
'setuptools >= 0.6b1',
|
|
|
|
],
|
2012-02-23 21:16:33 +00:00
|
|
|
cmdclass={'test': PyTest},
|
2010-11-25 14:33:37 +00:00
|
|
|
)
|