-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (57 loc) · 6.05 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
import os
import sys
from setuptools import setup, find_packages
from fnmatch import fnmatchcase
from distutils.util import convert_path
standard_exclude = ('*.pyc', '*~', '.*', '*.bak', '*.swp*')
standard_exclude_directories = ('.*', 'CVS', '_darcs', './build', './dist', 'EGG-INFO', '*.egg-info')
def find_package_data(where='.', package='', exclude=standard_exclude, exclude_directories=standard_exclude_directories):
out = {}
stack = [(convert_path(where), '', package)]
while stack:
where, prefix, package = stack.pop(0)
for name in os.listdir(where):
fn = os.path.join(where, name)
if os.path.isdir(fn):
bad_name = False
for pattern in exclude_directories:
if (fnmatchcase(name, pattern)
or fn.lower() == pattern.lower()):
bad_name = True
break
if bad_name:
continue
if os.path.isfile(os.path.join(fn, '__init__.py')):
if not package:
new_package = name
else:
new_package = package + '.' + name
stack.append((fn, '', new_package))
else:
stack.append((fn, prefix + name + '/', package))
else:
bad_name = False
for pattern in exclude:
if (fnmatchcase(name, pattern)
or fn.lower() == pattern.lower()):
bad_name = True
break
if bad_name:
continue
out.setdefault(package, []).append(prefix+name)
return out
setup(name='docassemble.GithubFeedbackForm',
version='0.4.1.1',
description=('Integration of GitHub issues with Docassemble interviews for collecting user feedback'),
long_description='# docassemble.GithubFeedbackForm\r\n\r\nA package that uses the GitHub API to gather feedback and then submit issues to Github that can be embedded\r\ninto a Docassemble interview. Makes it easy to collect per-page feedback.\r\n\r\nThis package is designed to support the following workflow:\r\n\r\n1. Work is stored on a public GitHub repository, or at least, you setup a repository to collect feedback.\r\n1. There is one package per "interview"/"app".\r\n2. Each question block has a unique question ID.\r\n3. Preferably--questions are triggered in an interview order block. If you use a series of `mandatory`\r\n blocks instead of a single mandatory block, the `variable` listed in the bug report may not be as useful.\r\n\r\n## Getting started\r\n\r\n1. Create a new GitHub user and create a personal access token on it. The personal access\r\n token needs minimal permissions. Specifically, it needs to be allowed to make pull requests.\r\n Pull request access is allowed for anyone by default when you create a new, public GitHub repository.\r\n3. Edit your config, and create a block like this:\r\n\r\n```yaml\r\ngithub issues:\r\n username: "YOUR_NEW_DEDICATED_ISSUE_CREATION_ACCOUNT"\r\n token: "..." # A valid GitHub personal access token associated with the username above\r\n default repository owner: YOUR_GITHUB_USER_OR_ORG_HERE\r\n allowed repository owners: # List the repo that your account will be allowed to create issues on\r\n - YOUR_GITHUB_USER_OR_ORG_HERE \r\n - SECOND_GITHUB_USER_OR_ORG\r\n```\r\n\r\n Note that it is important to provide a list of allowed repository owners.\r\n This is used to prevent your form from being used to spam GitHub \r\n repositories with feedback.\r\n \r\n3. Add a link on each page, in the footer or `under` area. \r\n You can use the `feedback_link()` function to add a link, like this:\r\n `[:comment-dots: Feedback](${ feedback_link(user_info()) } ){:target="_blank"}`\r\n \r\n Optional parameters:\r\n - `i`: the feedback form, like: docassemble.AssemblyLine:feedback.yml\r\n - `github_repo`: repo name, like: docassemble-AssemblyLine\r\n - `github_user`: owner of the repo, like: suffolklitlab\r\n - `variable`: variable being sought, like: intro\r\n - `question_id`: id of the current question, like: intro\r\n - `package_version`: version number of the current package\r\n - `filename`: filename of the interview the user is providing feedback on.\r\n \r\n Each has a sensible default. Most likely, you will limit your custom\r\n parameters to the `github_repo` if you want feedback links to work\r\n from the docassemble playground.\r\n \r\n You will also need to include the `github_issue.py` module in your parent interview,\r\n like this: \r\n ```yaml\r\n ---\r\n modules:\r\n - docassemble.GithubFeedbackForm.github_issue\r\n ```\r\n \r\n4. Optionally, create your own feedback.yml file. If you want a custom feedback.yml,\r\n it should look like this, with whatever customizations you choose:\r\n\r\n```yaml\r\ninclude:\r\n - docassemble.GithubFeedbackForm:feedback.yml\r\n---\r\ncode: |\r\n al_feedback_form_title = "Your title here" \r\n---\r\ncode: |\r\n # This email will be used ONLY if there is no valid GitHub config\r\n al_error_email = "your_email@yourdomain.com"\r\n---\r\ntemplate: al_how_to_get_legal_help\r\ncontent: |\r\n If you need more help, these are free resources:\r\n\r\n ... [INCLUDE STATE-SPECIFIC RESOURCES] \r\n```\r\n\r\nYou may also want to customize the metadata: title, exit url and override \r\nany specific questions, add a logo, etc. \r\n\r\n## Author\r\n\r\nQuinten Steenhuis, qsteenhuis@suffolk.edu\r\n',
long_description_content_type='text/markdown',
author='Quinten Steenhuis',
author_email='qsteenhuis@suffolk.edu',
license='The MIT License (MIT)',
url='https://courtformsonline.org',
packages=find_packages(),
namespace_packages=['docassemble'],
install_requires=['docassemble.ALToolbox>=0.6.0'],
zip_safe=False,
package_data=find_package_data(where='docassemble/GithubFeedbackForm/', package='docassemble.GithubFeedbackForm'),
)