File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ COPY --chown=postgres:postgres . /app
10
10
WORKDIR /app/pgml
11
11
12
12
# Install pgml extension globally.
13
- RUN python3 setup.py install
13
+ RUN pip3 install pgml
14
14
15
15
# Listen on 0.0.0.0 and allow 'root' to connect without a password.
16
16
# Please modify for production deployments accordingly.
Original file line number Diff line number Diff line change 1
1
def version ():
2
- return "0.1 "
2
+ return "0.3 "
Original file line number Diff line number Diff line change 1
1
import setuptools
2
+ from pgml import version
2
3
3
4
with open ("README.md" , "r" ) as fh :
4
5
long_description = fh .read ()
5
6
6
7
setuptools .setup (
7
8
name = "pgml" ,
8
- version = "0.1" ,
9
+ version = version () ,
9
10
author = "PostgresML" ,
10
11
author_email = "hello@postgresml.com" ,
11
12
description = "Run machine learning inside Postgres." ,
12
13
long_description = long_description ,
13
14
long_description_content_type = "text/markdown" ,
14
- url = "https://github.com/levkk /postgresml" ,
15
+ url = "https://github.com/postgresml /postgresml" ,
15
16
install_requires = [
16
17
"sklearn" ,
17
18
],
You can’t perform that action at this time.
0 commit comments