Skip to content

Commit

Permalink
version 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexArcPy committed Oct 12, 2018
1 parent c6a317d commit ab72b36
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 11 deletions.
9 changes: 7 additions & 2 deletions registrant/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
__version__ = "0.6"
from ._reporter import domains2html, fcs2html, tables2html, gdb2html, report_gdb_as_html
# -*- coding: UTF-8 -*-
"""Initialize modules on import of registrant."""
__version__ = '0.7'
from registrant._reporter import Reporter # noqa: F401
from registrant import ( # noqa: F401
_util_mappings, _geodatabase, _build_html, _data_objects, _config,
)
35 changes: 26 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
# -*- coding: UTF-8 -*-
"""Setup settings for the `registrant` package."""
from setuptools import setup

from codecs import open
from os import path

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

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

setup(
name='registrant',
version='0.6',
version='0.7',
description='Esri geodatabase HTML reporter',
long_description=long_description,
url='https://github.com/AlexArcPy/registrant',
Expand All @@ -23,12 +25,27 @@
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5'
],
'Programming Language :: Python :: 3.5',
],
keywords='Esri, ArcGIS, geodatabase, report, Python, ArcPy',
packages=['registrant', 'registrant/html-template', 'registrant/app'],
packages=[
'registrant',
'registrant/html-template',
'registrant/app',
],
include_package_data=True,
install_requires=['pandas>=0.20.1', 'beautifulsoup4>=4.6.0'],
package_data={'registrant/html-template' : ['template.html'],
'registrant/app' : ['css/*', 'fonts/*', 'js/*']},
install_requires=[
'pandas>=0.20.1',
'beautifulsoup4>=4.6.0',
],
package_data={
'registrant/html-template': [
'template.html',
],
'registrant/app': [
'css/*',
'fonts/*',
'js/*',
],
},
)

0 comments on commit ab72b36

Please sign in to comment.