-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
35 lines (32 loc) · 918 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
34
35
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='river-admin',
version='0.7.0',
author='Ahmet DAL',
author_email='ceahmetdal@gmail.com',
packages=find_packages(),
url='https://github.com/javrasya/river-admin.git',
description='Administration For django-river',
long_description=long_description,
install_requires=[
"Django",
"mock",
"django",
"djangorestframework",
"django-cors-headers",
"django-river>=3.0.0",
],
include_package_data=True,
zip_safe=False,
license='BSD',
platforms=['any'],
)