Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# A makefile to simplify speatative steps

package:
python setup.py bdist_wheel
python setup.py sdist

pypi-upload:
twine upload --verbose dist/*
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ SKOPS
This library helps you share your scikit-learn based models and put them in
production.

THIS LIBRARY IS NOT READY TO BE USED.

Sharing via HuggingFace Hub
===========================

Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[flake8]
max-line-length = 99
enable-extensions = C, G
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#! /usr/bin/env python
# License: 3-clause BSD
from setuptools import setup
import builtins

from setuptools import setup

# This is a bit (!) hackish: we are setting a global variable so that the
# main modelcard __init__ can detect if it is being loaded by the setup
Expand All @@ -23,13 +23,13 @@
LONG_DESCRIPTION = f.read()
MAINTAINER = "Adrin Jalali"
MAINTAINER_EMAIL = "adrin.jalali@gmail.com"
URL = "http://github.com/adrinjalali/skops"
URL = "http://github.com/skops-dev/skops"
DOWNLOAD_URL = "https://pypi.org/project/skops/#files"
LICENSE = "MIT"
PROJECT_URLS = {
"Bug Tracker": "http://github.com/adrinjalali/skops/issues",
"Documentation": "http://github.com/adrinjalali/skops",
"Source Code": "http://github.com/adrinjalali/skops",
"Bug Tracker": "http://github.com/skops-dev/skops/issues",
"Documentation": "http://github.com/skops-dev/skops",
"Source Code": "http://github.com/skops-dev/skops",
}


Expand All @@ -52,7 +52,7 @@ def setup_package():
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Development Status :: 5 - Alpha",
"Development Status :: 1 - Planning",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
Expand All @@ -61,7 +61,7 @@ def setup_package():
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
("Programming Language :: Python :: " "Implementation :: CPython"),
"Programming Language :: Python :: Implementation :: CPython",
],
python_requires=">=3.8",
install_requires=min_deps.tag_to_packages["install"],
Expand Down