Browse Source

rename package tooncher -> rescriptoon

Fabian Peter Hammerle 4 years ago
parent
commit
b688de2fee
4 changed files with 13 additions and 60 deletions
  1. 0 46
      CHANGELOG.md
  2. 1 1
      Pipfile
  3. 8 8
      Pipfile.lock
  4. 4 5
      setup.py

+ 0 - 46
CHANGELOG.md

@@ -5,49 +5,3 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
 ## Unreleased
-### Added
-- package: use readme as long description for pypi.org
-
-## [1.0.0] - 2019-12-23
-### Added
-- path to tootown engine may be provided via env var `$TOONCHER_ENGINE_PATH`
-
-### Changed
-- command line interface:
-  - fail if selected username was not found in config
-  - fail if selected username has multiple entries in config
-  - install via `setuptools.setup(entry_points=…)`
-- python interface:
-  - now private:
-    - `tooncher.LOGIN_API_URL`
-    - `tooncher.LoginDelayed`
-    - `tooncher.LoginSuccessful`
-    - `tooncher.TOONTOWN_ENGINE_DEFAULT_PATH`
-    - `tooncher.api_request`
-    - `tooncher.login`
-  - `start_engine` & `launch`: expects `isinstance(engine_path, pathlib.Path)`
-    (instead of `str`)
-- pass all env vars to engine
-  (e.g., enables use of `optirun tooncher …`)
-
-### Removed
-- python interface:
-  - `argcomplete`
-  - `tooncher.INVASIONS_API_URL`
-  - `tooncher.InvasionProgress`
-  - `tooncher.TOONTOWN_LIBRARY_PATH`
-  - `tooncher.request_active_invasions`
-
-### Fixed
-- mac: `$DYLD_LIBRARY_PATH` & `$DYLD_FRAMEWORK_PATH` relative to engine path
-
-## [0.4.1] - 2019-12-22
-### Fixed
-- `YAMLLoadWarning: […] the default Loader is unsafe. […]`
-
-## [0.4.0] - 2017-10-31
-
-[Unreleased]: https://github.com/fphammerle/tooncher/compare/1.0.0...HEAD
-[1.0.0]: https://github.com/fphammerle/tooncher/compare/0.4.1...1.0.0
-[0.4.1]: https://github.com/fphammerle/tooncher/compare/0.4.0...0.4.1
-[0.4.0]: https://github.com/fphammerle/tooncher/compare/0.3.1...0.4.0

+ 1 - 1
Pipfile

@@ -4,7 +4,7 @@ verify_ssl = true
 name = "pypi"
 
 [packages]
-tooncher = {editable = true, extras = ["extended-controls"], path = "."}
+rescriptoon = {editable = true, extras = ["extended-controls"], path = "."}
 
 [dev-packages]
 black = "==19.10b0"

+ 8 - 8
Pipfile.lock

@@ -1,7 +1,7 @@
 {
     "_meta": {
         "hash": {
-            "sha256": "1a48e7d2ac3b9a9b02795042ef0fa6c8aa02089cb3a18c38621f4fc165de6d4b"
+            "sha256": "bef0f4ce4f5c6eb429bc9a8d6a8bbe03b38141b6fff453aa772a82e779dc09c7"
         },
         "pipfile-spec": 6,
         "requires": {
@@ -48,6 +48,13 @@
             ],
             "version": "==5.2"
         },
+        "rescriptoon": {
+            "editable": true,
+            "extras": [
+                "extended-controls"
+            ],
+            "path": "."
+        },
         "six": {
             "hashes": [
                 "sha256:1f1b7d42e254082a9db6279deae68afb421ceba6158efa6131de7b3003ee93fd",
@@ -55,13 +62,6 @@
             ],
             "version": "==1.13.0"
         },
-        "tooncher": {
-            "editable": true,
-            "extras": [
-                "extended-controls"
-            ],
-            "path": "."
-        },
         "xlib": {
             "hashes": [
                 "sha256:60b7cd5d90f5d5922d9ce27b61589c07d970796558d417461db7b66e366bc401",

+ 4 - 5
setup.py

@@ -3,21 +3,20 @@ import pathlib
 import setuptools
 
 setuptools.setup(
-    name="tooncher",
+    name="rescriptoon",
     use_scm_version=True,
     packages=setuptools.find_packages(),
-    description="automates toontown rewritten's login process",
+    # TODO description="",
     long_description=pathlib.Path(__file__).parent.joinpath("README.md").read_text(),
     long_description_content_type="text/markdown",
     author="Fabian Peter Hammerle",
-    author_email="fabian.hammerle@gmail.com",
-    url="https://github.com/fphammerle/tooncher",
+    author_email="fabian@hammerle.me",
+    url="http://git.hammerle.me/fphammerle/rescriptoon",
     keywords=["game", "launcher", "toontown rewritten", "ttr"],
     classifiers=[
         "Development Status :: 4 - Beta",
         "Intended Audience :: End Users/Desktop",
         "License :: OSI Approved :: MIT License",
-        "Operating System :: MacOS :: MacOS X",
         "Operating System :: POSIX :: Linux",
         "Programming Language :: Python :: 3",
         "Topic :: Games/Entertainment",