Skip to content

Commit

Permalink
added changes file, think i fixed setup.py. #8
Browse files Browse the repository at this point in the history
  • Loading branch information
sckott committed Nov 4, 2015
1 parent b7313ff commit 9e3aa84
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 11 deletions.
10 changes: 10 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Changes
=======

0.1.1 (2015-11-03)
--------------------
- Fixed distribution for pypi

0.1.0 (2015-11-02)
--------------------
- First release
32 changes: 21 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,27 @@
import codecs
from setuptools import setup
from setuptools import find_packages

setup(name='pygbif',
version='0.1.0',
description='Python client for GBIF',
author='Scott Chamberlain',
author_email='myrmecocystus@gmail.com',
url='http://github.com/sckott/pygbif',
license="MIT",
# packages=['pygbif'],
packages = find_packages(exclude=['test-*']),
install_requires=['requests>2.7'],
classifiers=(
with codecs.open('README.md', 'r', 'utf-8') as f:
readme = f.read()

with codecs.open('CHANGES.txt', 'r', 'utf-8') as f:
changes = f.read()

long_description = readme + '\n\n' + changes

setup(
name = 'pygbif',
version = '0.1.1',
description = 'Python client for GBIF',
long_description = long_description,
author = 'Scott Chamberlain',
author_email = 'myrmecocystus@gmail.com',
url = 'http://github.com/sckott/pygbif',
license = "MIT",
packages = find_packages(exclude=['test-*']),
install_requires = ['requests>2.7'],
classifiers = (
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
Expand Down

0 comments on commit 9e3aa84

Please sign in to comment.