-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (29 loc) · 1.02 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
from setuptools import setup
setup(name='django-cards',
version='0.1.2',
description='Cards functionality for Django. Very specific',
url='http://github.com/hacklabr/django-cards',
author='Tiago Fassoni, Bruno Martin, Laury Bueno',
author_email='[email protected]',
license='GPLv3',
packages=[
'cards',
],
include_package_data=True,
install_requires=[],
zip_safe=False,
keywords='django-discussion',
classifiers=[
'Development Status :: 1 - Production',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: AGPLv3',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)