forked from 5monkeys/django-bananas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (24 loc) · 803 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
#!/usr/bin/env python
from os import path
from setuptools import setup, find_packages
here = path.dirname(path.abspath(__file__))
# Get the long description from the relevant file
long_description = None
try:
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
except Exception:
pass
setup(
name='django-bananas',
description='Django Bananas - Django extensions the monkey way',
long_description=long_description,
url='https://github.com/5monkeys/django-bananas',
version=__import__('bananas').__version__,
packages=find_packages(exclude=['tests', '_*', 'example']),
include_package_data=True,
zip_safe=False,
install_requires=[],
tests_require=['detox', 'coverage'],
test_suite='runtests.main'
)