Skip to content

Commit

Permalink
find packages
Browse files Browse the repository at this point in the history
  • Loading branch information
dswigh committed Aug 1, 2023
1 parent eb638e5 commit 9c6e520
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from setuptools import setup
from setuptools import setup, find_packages

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

setup(
name="orderly",
version="0.1.3",
version="0.1.4",
description="A wrapper for downloading ORD-schema data, extracting and cleaning the data",
license="MIT",
long_description_content_type="text/markdown",
Expand All @@ -17,5 +17,5 @@
"Kobi C. Felton <[email protected]>",
"Alexei A. Lapkin <[email protected]>",
],
packages=["orderly"],
packages=find_packages(),
)

0 comments on commit 9c6e520

Please sign in to comment.