-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 847 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
def _read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(name='pelican-pannellum',
version='0.2dev',
description='Pannellum Plugin for pelican',
long_description=_read('Readme.rst'),
py_modules=['pannellum'],
author='Peter Reimer',
author_email='peter@4pi.org',
url='https://github.com/peterreimer/pelican-pannellum',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7'
],
keywords=['pelican', 'pannellum', 'panorama'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'Pillow',
'fourpi.pannellum',
'pelican'
# -*- Extra requirements: -*-
],
)