-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (51 loc) · 1.55 KB
/
Copy pathsetup.py
File metadata and controls
58 lines (51 loc) · 1.55 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
dev_requires = [
'ipython==4.0.0',
]
tests_requires = [
'factory_boy==2.5.2',
]
install_requires = [
# '--process-dependency-links',
'Django==1.8.4',
'Sphinx==1.3.1',
'Unidecode==0.04.18',
# SIB applications
'sib-products',
'sib-filters',
# export lib uses lxml that cannot be packed on server for now
# 'sib-export',
'sib-cart',
]
dependency_links = [
'git+https://github.com/StoreInBox/sib-products.git#egg=sib-products',
'git+https://github.com/StoreInBox/sib-filters.git#egg=sib-filters',
'git+https://github.com/StoreInBox/sib-export.git#egg=sib-export',
'git+https://github.com/StoreInBox/sib-cart.git#egg=sib-cart',
]
setup(
name='sib-assembly',
version='0.1.0',
author='zymud',
author_email='zymud@i.ua',
url='https://github.com/StoreInBox/SIB-assembly',
description='Part of SIB project',
long_description=open('README.rst').read(),
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=install_requires,
dependency_links=dependency_links,
extras_require={
'dev': dev_requires,
'tests': tests_requires,
},
# tests_require=tests_requires,
# test_suite='nodeconductor.server.test_runner.run_tests',
include_package_data=True,
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
],
)