-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
setup.py
33 lines (30 loc) · 878 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
32
33
import os
import sys
from setuptools import setup, find_packages
readme_file = os.path.join(os.path.dirname(__file__), 'README.rst')
try:
long_description = open(readme_file).read()
except IOError as err:
sys.stderr.write("[ERROR] Cannot find file specified as "
"``long_description`` (%s)\n" % readme_file)
sys.exit(1)
setup(
name='django-river',
version='3.3.0',
author='Ahmet DAL',
author_email='[email protected]',
packages=find_packages(),
url='https://github.com/javrasya/django-river.git',
description='Django Workflow Library',
long_description=long_description,
install_requires=[
"Django",
"django-mptt==0.9.1",
"django-cte==1.1.4",
"django-codemirror2==0.2"
],
include_package_data=True,
zip_safe=False,
license='BSD',
platforms=['any'],
)