-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
44 lines (35 loc) · 1.04 KB
/
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
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
from codecs import open
from ipfs_storage import __version__
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except(IOError, ImportError):
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name='django-ipfs-storage',
description='IPFS storage backend for Django.',
long_description=long_description,
keywords='django ipfs storage',
version=__version__,
license='MPL 2.0',
author='Ben Jeffrey',
author_email='[email protected]',
url='https://github.com/jeffbr13/django-ipfs-storage',
classifiers=(
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Framework :: Django',
),
packages=find_packages(),
install_requires=(
'django',
'ipfsapi',
),
setup_requires=(
'pypandoc',
)
)