Skip to content

Commit

Permalink
add README.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
pwrose committed Jul 6, 2022
1 parent 943e5f7 commit e9f6a22
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
Empty file added README.rst
Empty file.
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
here = path.abspath(path.dirname(__file__))

# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

print(find_packages(exclude=['contrib', 'docs', 'tests']))
Expand All @@ -19,7 +19,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='1.1.2',
version='1.1.3',

description='A decoding libary for the PDB mmtf format',
long_description=long_description,
Expand All @@ -28,8 +28,8 @@
url='https://github.com/rcsb/mmtf-python.git',

# Author details
author='Anthony Bradley',
author_email='anthony.bradley@rcsb.org',
author='Anthony Bradley, Peter W. Rose',
author_email='pwrose@ucsd.edu',

# Choose your license
license='Apache 2.0',
Expand Down Expand Up @@ -60,6 +60,9 @@
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],

# What does your project relate to?
Expand All @@ -77,7 +80,7 @@
# your project is installed. For an analysis of "install_requires" vs pip's
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=['msgpack>=0.5.6'],
install_requires=['msgpack>=1.0.0'],

# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
Expand Down

0 comments on commit e9f6a22

Please sign in to comment.