mirror of
https://github.com/scratchfoundation/gargoyle.git
synced 2025-06-27 09:00:19 -04:00
40 lines
No EOL
1.1 KiB
Python
40 lines
No EOL
1.1 KiB
Python
#!/usr/bin/env python
|
|
|
|
try:
|
|
from setuptools import setup, find_packages
|
|
from setuptools.command.test import test
|
|
except ImportError:
|
|
from ez_setup import use_setuptools
|
|
use_setuptools()
|
|
from setuptools import setup, find_packages
|
|
from setuptools.command.test import test
|
|
|
|
|
|
class mytest(test):
|
|
def run(self, *args, **kwargs):
|
|
from runtests import runtests
|
|
runtests()
|
|
# Upgrade().run(dist=True)
|
|
# test.run(self, *args, **kwargs)
|
|
|
|
setup(
|
|
name='gargoyle',
|
|
version='0.1.0',
|
|
author='Disqus',
|
|
author_email='team@disqus.com',
|
|
url='http://github.com/disqus/gargoyle',
|
|
description = 'Switches',
|
|
packages=find_packages(),
|
|
zip_safe=False,
|
|
install_requires=[],
|
|
test_suite = 'gargoyle.tests',
|
|
include_package_data=True,
|
|
cmdclass={"test": mytest},
|
|
classifiers=[
|
|
'Framework :: Django',
|
|
'Intended Audience :: Developers',
|
|
'Intended Audience :: System Administrators',
|
|
'Operating System :: OS Independent',
|
|
'Topic :: Software Development'
|
|
],
|
|
) |