Skip to content

Commit

Permalink
Python 3.6 migration (#10)
Browse files Browse the repository at this point in the history
* support for pythn 3.6
* add homepage
* license and description
* markdown should render well on pypi
  • Loading branch information
procrastinatio committed Mar 8, 2019
1 parent 040d6cd commit 98727bb
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ language: python
python:
- 2.7
- 3.5
- 3.6
install:
- pip install nose
- pip install flake8
Expand Down
25 changes: 22 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,32 @@
from setuptools import setup


with open("README.md", "r") as fh:
long_description = fh.read()

setup(name='esrijson',
version='0.4',
version='0.4.2',
description='Bindings and utilities for EsriJSON',
classifiers=[],
license='BDS',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Software Development :: Libraries :: Python Modules'
],
license='BSD',
author='Loic Gasser',
author_email=u'loicgasser4@gmail.com',
url='https://github.com/geoadmin/lib-esrijson',
packages=['esrijson'],
package_dir={'esrijson': 'esrijson'},
test_suite='nose.collector',
Expand Down

0 comments on commit 98727bb

Please sign in to comment.