Skip to content

Commit

Permalink
Update setup.py with better information.
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphael Townshend committed Jan 2, 2021
1 parent f8e002c commit 6b798a6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
from setuptools import setup, find_packages

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

setup(
name='atom3d',
packages=find_packages(include=[
Expand All @@ -12,10 +15,13 @@
'atom3d.filters',
'atom3d.data',
]),
version='0.1.0',
version='0.1.1',
description='ATOM3D: Tasks On Molecules in 3 Dimensions',
author='Raphael Townshend',
author='ATOM3D developers',
license='MIT',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://atom3d.ai",
install_requires=[
'argparse',
'biopython',
Expand Down

0 comments on commit 6b798a6

Please sign in to comment.