-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use divs and aria instead of fieldset and legend, due to Safari bug; …
…added raise_undefined_attribute_error method of DAObject; added raise_undefined_index_error method of DAList and DADict; removed the docassemble namespace package, which is not necessary
- Loading branch information
Showing
23 changed files
with
149 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
import os | ||
from fnmatch import fnmatchcase | ||
from distutils.util import convert_path | ||
from setuptools import setup, find_namespace_packages | ||
|
||
|
||
|
@@ -13,7 +12,7 @@ def read(fname): | |
|
||
def find_package_data(where='.', package='', exclude=standard_exclude, exclude_directories=standard_exclude_directories): | ||
out = {} | ||
stack = [(convert_path(where), '', package)] | ||
stack = [(os.path.normpath(where), '', package)] | ||
while stack: | ||
where, prefix, package = stack.pop(0) | ||
for name in os.listdir(where): | ||
|
@@ -55,9 +54,8 @@ def find_package_data(where='.', package='', exclude=standard_exclude, exclude_d | |
author_email='[email protected]', | ||
license='MIT', | ||
url='https://docassemble.org', | ||
packages=find_namespace_packages(), | ||
packages=find_namespace_packages(include=['docassemble.*']), | ||
install_requires=[ | ||
'docassemble==1.6.0', | ||
'docassemble.base==1.6.0', | ||
"googledrivedownloader==0.4", | ||
"ics==0.7.2", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.