This repository has been archived by the owner on Mar 27, 2018. It is now read-only.
forked from tschellenbach/Stream-Framework
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
70 lines (60 loc) · 1.96 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
from feedly import __version__, __maintainer__, __email__
import sys
long_description = open('README.md').read()
tests_require = [
'Django>=1.3',
'mock',
'pep8',
'unittest2',
'pytest',
]
install_requires = [
'cqlengine==0.8.71',
'redis>=2.8.0',
'celery',
]
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
setup(
name='feedly',
version=__version__,
author=__maintainer__,
author_email=__email__,
url='http://github.com/tschellenbach/feedly',
description='Feedly allows you to build complex feed and caching structures using Redis.',
long_description=long_description,
packages=find_packages(),
zip_safe=False,
install_requires=install_requires,
extras_require={'test': tests_require},
cmdclass={'test': PyTest},
tests_require=tests_require,
include_package_data=True,
dependency_links=[
'https://github.com/tbarbugli/cqlengine/tarball/3a3127ae3b9cc363f7a01d19bbc46ca08460b8c5#egg=cqlengine-0.8.71',
],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django'
],
)