Skip to content

Commit ad8c178

Browse files
committed
Published v0.0.9 to PyPi
1 parent 111157f commit ad8c178

2 files changed

Lines changed: 7 additions & 11 deletions

File tree

requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@ google-cloud-firestore
77
googlemaps
88
matplotlib
99
numpy
10-
# ocean-lib # FIXME: Breaks App Engine deployments.
1110
openpyxl
1211
pandas
1312
statsmodels
1413
ulid-py
1514

15+
# FIXME:
16+
# ocean-lib # Breaks App Engine deployments.
17+
1618
# Optional dependency:
1719
# xlwings # Breaks App Engine deployments.

setup.py

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
Authors: Keegan Skeate <keegan@cannlytics.com>
66
Contact: <keegan@cannlytics.com>
77
Created: 1/21/2021
8-
Updated: 12/10/2021
8+
Updated: 1/20/2022
99
License: 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.
1414
README = ''
@@ -21,20 +21,14 @@
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.
2727
setup_requirements = []
2828

2929
# Specify requirements for testing.
3030
test_requirements = []
3131

32-
# Get the packages.
33-
packages = find_namespace_packages(
34-
include=['cannlytics'],
35-
exclude=['*test*']
36-
)
37-
3832
# Publish the module.
3933
setup(
4034
author='Cannlytics',
@@ -57,7 +51,7 @@
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',

0 commit comments

Comments
 (0)