Skip to content

Commit 1b77e47

Browse files
committed
Fixed requirements and simplified setup.py
1 parent ad8c178 commit 1b77e47

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
beautifulsoup4
2-
django
3-
dotenv
42
firebase_admin
53
google-cloud-secret-manager
64
google-cloud-firestore
@@ -9,6 +7,7 @@ matplotlib
97
numpy
108
openpyxl
119
pandas
10+
python-dotenv
1211
statsmodels
1312
ulid-py
1413

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
"""
1111
from setuptools import find_packages, setup
1212

13+
# Define the package version.
14+
version = '0.0.10'
15+
1316
# Get the project description.
1417
README = ''
1518
with open('README.md', 'r', encoding='utf-8') as readme_file:
@@ -57,6 +60,6 @@
5760
test_suite='tests',
5861
tests_require=test_requirements,
5962
url='https://github.com/cannlytics/cannlytics-engine',
60-
version='0.0.9',
63+
version=version,
6164
zip_safe=False,
6265
)

0 commit comments

Comments
 (0)