|
1 | 1 | #!/usr/bin/env python
|
2 |
| -from setuptools import setup, find_packages |
| 2 | +from sys import exit |
3 | 3 |
|
4 |
| -requirements = [ |
5 |
| - 'django>=1.8', |
6 |
| -] |
| 4 | +from setuptools import find_packages, setup |
| 5 | +from setuptools.command.test import test as TestCommand |
7 | 6 |
|
8 |
| -test_requirements = [ |
9 |
| -] |
| 7 | + |
| 8 | +class Tox(TestCommand): |
| 9 | + def finalize_options(self): |
| 10 | + TestCommand.finalize_options(self) |
| 11 | + self.test_args = [] |
| 12 | + self.test_suite = True |
| 13 | + |
| 14 | + def run_tests(self): |
| 15 | + #import here, cause outside the eggs aren't loaded |
| 16 | + import tox |
| 17 | + errno = tox.cmdline(self.test_args) |
| 18 | + exit(errno) |
| 19 | + |
| 20 | +long_description = u'\n\n'.join(( |
| 21 | + open('README.rst').read(), |
| 22 | + open('CHANGELOG').read() |
| 23 | +)) |
10 | 24 |
|
11 | 25 | setup(
|
12 | 26 | name='django-wakawaka',
|
13 |
| - version='1.0a', |
14 |
| - description='A super simple wiki app written in Python using the Django Framwork', |
15 |
| - long_description=open('README.rst').read(), |
| 27 | + version='1.0a1', |
| 28 | + description='django-wakawka is a super simple wiki system written in Python ' |
| 29 | + 'using the Django framework.', |
| 30 | + long_description=long_description, |
16 | 31 | author='Martin Mahner',
|
17 | 32 |
|
18 |
| - url='http://github.com/bartTC/django-wakawaka/', |
| 33 | + url='https://github.com/bartTC/django-wakawaka/', |
| 34 | + classifiers=[ |
| 35 | + 'Development Status :: 3 - Alpha', |
| 36 | + 'Environment :: Web Environment', |
| 37 | + 'Intended Audience :: Developers', |
| 38 | + 'License :: OSI Approved :: MIT License', |
| 39 | + 'Operating System :: OS Independent', |
| 40 | + 'Programming Language :: Python :: 2', |
| 41 | + 'Programming Language :: Python :: 3', |
| 42 | + 'Framework :: Django', |
| 43 | + ], |
19 | 44 | packages=find_packages(),
|
20 | 45 | package_data={
|
21 |
| - 'wakawaka/': [ |
22 |
| - 'static/*.*', |
23 |
| - 'templates/*.*' |
24 |
| - ] |
| 46 | + 'dpaste': ['static/*.*', 'templates/*.*'], |
| 47 | + 'docs': ['*'], |
| 48 | + }, |
| 49 | + include_package_data=True, |
| 50 | + install_requires=[ |
| 51 | + 'django>=1.8', |
| 52 | + ], |
| 53 | + tests_require=[ |
| 54 | + 'tox>=1.6.1' |
| 55 | + ], |
| 56 | + cmdclass={ |
| 57 | + 'test': Tox |
25 | 58 | },
|
26 |
| - install_requires=requirements, |
27 |
| - tests_require=test_requirements, |
28 |
| - zip_safe=False, |
29 | 59 | )
|
0 commit comments