|
| 1 | +# -*- coding: UTF-8 -*- |
| 2 | +"""Setup settings for the `registrant` package.""" |
1 | 3 | from setuptools import setup
|
2 | 4 |
|
3 | 5 | from codecs import open
|
4 | 6 | from os import path
|
5 | 7 |
|
6 | 8 | here = path.abspath(path.dirname(__file__))
|
7 | 9 |
|
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() |
10 | 12 |
|
11 | 13 | setup(
|
12 | 14 | name='registrant',
|
13 |
| - version='0.6', |
| 15 | + version='0.7', |
14 | 16 | description='Esri geodatabase HTML reporter',
|
15 | 17 | long_description=long_description,
|
16 | 18 | url='https://github.com/AlexArcPy/registrant',
|
|
23 | 25 | 'License :: OSI Approved :: MIT License',
|
24 | 26 | 'Operating System :: Microsoft',
|
25 | 27 | 'Programming Language :: Python :: 2.7',
|
26 |
| - 'Programming Language :: Python :: 3.5' |
27 |
| - ], |
| 28 | + 'Programming Language :: Python :: 3.5', |
| 29 | + ], |
28 | 30 | 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 | + ], |
30 | 36 | 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 | + }, |
34 | 51 | )
|
0 commit comments