Skip to content
Snippets Groups Projects
Commit 4896ac37 authored by Andy Summers's avatar Andy Summers
Browse files

Export packages with `find_packages`

parent 1004d0f8
No related branches found
No related tags found
No related merge requests found
import os
from setuptools import setup
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
......@@ -9,7 +9,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='spotseeker_restclient',
version='0.0.1',
packages=['spotseeker_restclient'],
packages=find_packages(),
include_package_data=True,
install_requires = [
'setuptools',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment