-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 1.11 KB
/
setup.py
File metadata and controls
26 lines (25 loc) · 1.11 KB
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 find_packages, setup
import textwrap
setup(
name='actionkit-templates',
version='0.1.1',
author='Schuyler Duveen',
author_email='opensource@moveon.org',
packages=find_packages(),
package_data={'actionkit_templates': ['templates/*.html', 'contexts/*.csv']},
url='https://github.com/MoveOnOrg/actionkit-templates',
license='MIT',
description="actionkit-templates allows you to view your ActionKit templates locally testing different configurations for each page type. It also documents by-code many context variables for each page",
long_description=textwrap.dedent(open('README.md', 'r').read()),
entry_points={
'console_scripts': [
'aktemplates = actionkit_templates.aktemplates:serve_templates',
],
},
install_requires=[
'Django==1.8',
'requests==2.22.0',
],
keywords = "python actionkit",
classifiers=['Development Status :: 4 - Beta', 'Environment :: Console', 'Intended Audience :: Developers', 'Natural Language :: English', 'Operating System :: OS Independent', 'Topic :: Internet :: WWW/HTTP'],
)