forked from lukaszb/cq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 784 Bytes
/
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
from setuptools import setup
import os
import os.path
def get_packages(top):
packages = []
for dirname, subdirs, filenames in os.walk(top):
initpy = os.path.join(dirname, '__init__.py')
is_python_package = os.path.isfile(initpy)
if is_python_package:
packages.append(dirname)
return packages
setup(
name='cq',
version='0.10dev',
url='https://github.com/lukaszb/cq',
license='MIT',
description='simple cqrs implementation',
author='Lukasz Balcerzak',
author_email='[email protected]',
zip_safe=False,
packages=get_packages('cq'),
include_package_data=True,
install_requires=[
'jsonfield', # TODO: only needed django, make it optional
'marshmallow>=2.13',
],
)