File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,11 +7,13 @@ google-cloud-firestore
77googlemaps
88matplotlib
99numpy
10- # ocean-lib # FIXME: Breaks App Engine deployments.
1110openpyxl
1211pandas
1312statsmodels
1413ulid-py
1514
15+ # FIXME:
16+ # ocean-lib # Breaks App Engine deployments.
17+
1618# Optional dependency:
1719# xlwings # Breaks App Engine deployments.
Original file line number Diff line number Diff line change 55Authors: Keegan Skeate <keegan@cannlytics.com>
66Contact: <keegan@cannlytics.com>
77Created: 1/21/2021
8- Updated: 12/10/2021
8+ Updated: 1/20/2022
99License: MIT <https://opensource.org/licenses/MIT>
1010"""
11- from setuptools import find_namespace_packages , setup
11+ from setuptools import find_packages , setup
1212
1313# Get the project description.
1414README = ''
2121 REQUIREMENTS = [i [:- 1 ] for i in f if i [0 ] != '#' ]
2222
2323# Specify requirements for development.
24- dev_requirements = ['xlwings' ]
24+ dev_requirements = ['ocean-lib' , ' xlwings' ]
2525
2626# Specify requirements for setup.
2727setup_requirements = []
2828
2929# Specify requirements for testing.
3030test_requirements = []
3131
32- # Get the packages.
33- packages = find_namespace_packages (
34- include = ['cannlytics' ],
35- exclude = ['*test*' ]
36- )
37-
3832# Publish the module.
3933setup (
4034 author = 'Cannlytics' ,
5751 long_description = README ,
5852 long_description_content_type = 'text/markdown' ,
5953 name = 'cannlytics' ,
60- packages = packages ,
54+ packages = find_packages () ,
6155 python_requires = '>=3.9' ,
6256 setup_requires = setup_requirements ,
6357 test_suite = 'tests' ,
You can’t perform that action at this time.
0 commit comments