Skip to content

Commit

Permalink
Include README for PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
josokinas committed Nov 3, 2018
1 parent 5db65d9 commit a3ce054
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
#!/usr/bin/env python

from os.path import join
from os.path import dirname, join
from setuptools import setup, find_packages


def read(file_name):
with open(join(dirname(__file__), file_name)) as file_object:
return file_object.read()


name = 'geokey-cartodb'
version = __import__(name.replace('-', '_')).__version__
repository = join('https://github.com/ExCiteS', name)
Expand All @@ -12,6 +17,7 @@
name=name,
version=version,
description='Provides API endpoints for CartoDB',
long_description=read('README.rst'),
url=repository,
download_url=join(repository, 'tarball', version),
author='ExCiteS',
Expand Down

0 comments on commit a3ce054

Please sign in to comment.