forked from Bosh-StocksDigital/wagtailcolourpicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (52 loc) · 1.69 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
from setuptools import setup
from codecs import open
from os import path
from wagtailcolourpicker import __version__
install_requires = [
'wagtail>=2'
]
documentation_extras = [
'sphinxcontrib-spelling>=2.3.0',
'Sphinx>=1.5.2',
'sphinx-autobuild>=0.6.0',
'karma_sphinx_theme>=0.0.6',
]
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='wagtailcolourpicker',
version=__version__,
description='Wagtail text colour picker for DraftJS',
long_description=long_description,
author='Stuart George',
author_email='[email protected]',
url='https://github.com/AccentDesign/wagtailcolourpicker/',
download_url='https://pypi.python.org/pypi/wagtailcolourpicker',
license='MIT',
packages=[
'wagtailcolourpicker'
],
install_requires=install_requires,
extras_require={
'docs': documentation_extras
},
include_package_data=True,
keywords=['wagtail', 'draftjs', 'colour', 'picker', 'accent', 'design'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: Django',
'Framework :: Django :: 2.0',
'Framework :: Wagtail',
'Framework :: Wagtail :: 2',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
)