This repository has been archived by the owner on Sep 8, 2021. It is now read-only.
forked from mvantellingen/localshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
76 lines (72 loc) · 2.2 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
71
72
73
74
75
76
from setuptools import setup, find_packages
readme = []
with open('README.rst', 'r') as fh:
readme = fh.readlines()
tests_require = [
'pytest>=2.6.0',
'pytest-cov>=1.7.0',
'pytest-django>=2.8.0',
'pytest-cache==1.0',
'django-webtest==1.7.8',
'factory-boy==2.5.2',
'mock==1.0.1',
]
setup(
name='localshop',
version='0.10.0.dev',
author='Michael van Tellingen',
author_email='[email protected]',
url='http://github.com/mvantellingen/localshop',
description='A private pypi server including auto-mirroring of pypi.',
long_description='\n'.join(readme),
packages=find_packages(),
zip_safe=False,
install_requires=[
'Django==1.7.8',
'Pillow==2.8.1',
'celery==3.1.18',
'kombu==3.0.26',
'django-braces==1.8.0',
'django-cache-url==0.8.0',
'django-celery==3.1.16',
'django-configurations==0.8',
'django-model-utils==2.2.0',
'django-uuidfield==0.5.0',
'django-storages-redux==1.2.3',
'django-widget-tweaks==1.3',
'dj-database-url==0.3.0',
'dj-email-url==0.0.4',
'docutils==0.12',
'gunicorn==19.1.1',
'netaddr==0.7.12',
'requests==2.7.0',
'sqlparse==0.1.15',
'whitenoise==1.0.6',
'Versio==0.2.1',
],
tests_require=tests_require,
extras_require={'test': tests_require},
license='BSD',
include_package_data=True,
entry_points={
'console_scripts': [
'localshop = localshop.runner:main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Topic :: System',
'Topic :: System :: Software Distribution',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
)