forked from dakrauth/django-swingtime
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (23 loc) · 937 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
from setuptools import setup, find_packages
VERSION = __import__("cmsplugin_swingtime").__version__
setup(
name="cmsplugin_swingtime",
description="Event and occurrence scheduling application for Django CMS.",
version=VERSION,
author="Jelko Arnds",
author_email="[email protected]",
url="https://github.com/jelko/cmsplugin_swingtime",
license = 'BSD',
install_requires = [
],
classifiers = ['Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
"Topic :: Internet :: WWW/HTTP"
],
packages=find_packages(exclude=["example", "example.*"]),
)