forked from jasjukaitis/cmsplugin-socialbuttons
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·24 lines (22 loc) · 768 Bytes
/
setup.py
File metadata and controls
executable file
·24 lines (22 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import os
from setuptools import setup, find_packages
setup(
name='cmsplugin-socialbuttons',
version='0.1.2',
description='A simple plugin for adding social buttons.',
long_description=open(os.path.join(os.path.dirname(__file__),
'README.rst')).read(),
author='Raphael Jasjukaitis',
author_email='webmaster@raphaa.de',
url='https://github.com/jurheinsieg/cmsplugin-socialbuttons',
packages=find_packages(),
classifiers=[
'Environment :: Web Environment',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
zip_safe=False,
include_package_data=True
)