forked from peterbe/django-semanticui-form
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (32 loc) · 1.1 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
from setuptools import setup, find_packages
from semanticuiform.meta import VERSION
setup(
name='django-semanticui-form-2.0',
version=str(VERSION),
description="django-semanticui-form",
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
keywords='SemanticUI,django,Semantic,Fomantic',
author='Maxim Harder',
author_email='[email protected]',
url='https://github.com/Gokujo/django-semanticui-form',
license='BSD',
test_suite='runtests.runtests',
install_requires = [
"django>=2.0",
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
)