File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22"""A setuptools based setup module."""
33
44
5- __author__ = "Chris Lunsford"
6- __author_email__ = "chrlunsf@cisco.com"
7- __copyright__ = "Copyright (c) 2016-2018 Cisco and/or its affiliates."
8- __license__ = "MIT"
9-
10-
115from codecs import open
126from os import path
13- from setuptools import setup
7+
8+ from setuptools import setup , find_packages
149
1510import versioneer
1611
1712
13+ __author__ = "Chris Lunsford"
14+ __author_email__ = "chrlunsf@cisco.com"
15+ __copyright__ = "Copyright (c) 2016-2018 Cisco and/or its affiliates."
16+ __license__ = "MIT"
17+
18+
1819# Get the long description from the README file
1920current_path = path .abspath (path .dirname (__file__ ))
2021with open (path .join (current_path , 'README.rst' ), encoding = 'utf-8' ) as f :
5859
5960 keywords = 'cisco spark api enterprise messaging' ,
6061
61- packages = [
62- 'ciscosparkapi' ,
63- 'ciscosparkapi.api' ,
64- ],
62+ packages = find_packages (include = ['ciscosparkapi' , 'ciscosparkapi.*' ]),
6563
6664 install_requires = [
6765 'future' ,
You can’t perform that action at this time.
0 commit comments