Skip to content

Commit ab72b36

Browse files
committed
version 0.7
1 parent c6a317d commit ab72b36

File tree

2 files changed

+33
-11
lines changed

2 files changed

+33
-11
lines changed

registrant/__init__.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
1-
__version__ = "0.6"
2-
from ._reporter import domains2html, fcs2html, tables2html, gdb2html, report_gdb_as_html
1+
# -*- coding: UTF-8 -*-
2+
"""Initialize modules on import of registrant."""
3+
__version__ = '0.7'
4+
from registrant._reporter import Reporter # noqa: F401
5+
from registrant import ( # noqa: F401
6+
_util_mappings, _geodatabase, _build_html, _data_objects, _config,
7+
)

setup.py

Lines changed: 26 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1+
# -*- coding: UTF-8 -*-
2+
"""Setup settings for the `registrant` package."""
13
from setuptools import setup
24

35
from codecs import open
46
from os import path
57

68
here = path.abspath(path.dirname(__file__))
79

8-
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
9-
long_description = f.read()
10+
with open(path.join(here, 'README.rst'), encoding='utf-8') as fh:
11+
long_description = fh.read()
1012

1113
setup(
1214
name='registrant',
13-
version='0.6',
15+
version='0.7',
1416
description='Esri geodatabase HTML reporter',
1517
long_description=long_description,
1618
url='https://github.com/AlexArcPy/registrant',
@@ -23,12 +25,27 @@
2325
'License :: OSI Approved :: MIT License',
2426
'Operating System :: Microsoft',
2527
'Programming Language :: Python :: 2.7',
26-
'Programming Language :: Python :: 3.5'
27-
],
28+
'Programming Language :: Python :: 3.5',
29+
],
2830
keywords='Esri, ArcGIS, geodatabase, report, Python, ArcPy',
29-
packages=['registrant', 'registrant/html-template', 'registrant/app'],
31+
packages=[
32+
'registrant',
33+
'registrant/html-template',
34+
'registrant/app',
35+
],
3036
include_package_data=True,
31-
install_requires=['pandas>=0.20.1', 'beautifulsoup4>=4.6.0'],
32-
package_data={'registrant/html-template' : ['template.html'],
33-
'registrant/app' : ['css/*', 'fonts/*', 'js/*']},
37+
install_requires=[
38+
'pandas>=0.20.1',
39+
'beautifulsoup4>=4.6.0',
40+
],
41+
package_data={
42+
'registrant/html-template': [
43+
'template.html',
44+
],
45+
'registrant/app': [
46+
'css/*',
47+
'fonts/*',
48+
'js/*',
49+
],
50+
},
3451
)

0 commit comments

Comments
 (0)