{ "info": { "author": "Vu Le (findereyes)", "author_email": "tuongvu@gmail.com", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2" ], "description": "# Upkit — Unity3D project/package toolkit\n\n*Upkit* is a command line toolkit that helps create/organize your Unity3D projects. With a simple configuration file, Upkit automatically resolves the project dependencies, symbolic-links them and generates a ready-to-use Unity project for you. \n\n_For those in a hurry, please go to [Getting Started](#getting-started) to see *Upkit* in action._\n\n## Why should you use it? \n\n### Our usecase\n\nIf you are like us, these are what you need when developing a Unity project:\n* Total separation of 3rd party assets, plugins, dependencies from your assets/codes, to reduce the project size.\n* Quick package swapping for prototyping and production. \n* Simple dependency resolving, from Nuget or Git repositories, or elsewhere. \n* Simple configuration.\n\n### Limitations of existing tools\n\nAt first glance, Upkit shares some similarities with Projeny, which is a great tool that we frequently used in our team. However, as Projeny model imposes a flat, exclusive package hierarchy, off-the-shelf packages do not often work well together. For example, two packages having the same native library folder `Plugins/Android` will clash. Even when there are no name clashes, Unity-compatible Nuget packages are not easily linked at times. \n\nUnity 2018 officially comes with an easy-to-use built-in Package Manager. As of this writing, however, most of the Asset Store packages are still unavailable in the Package Manager, except those from Unity Technologies. Another drawback with current Package Manager is that we cannot use it for internal cross-project packages. This means that most of the time, we have to fall back to traditional approaches. \n\n### Upkit remedies those issues and adds some more tricks\n\nUpkit was initially designed as our solution to the aforementioned limitations, which is a tool sitting between Nuget (dependency resolving step) and Projeny (project linking step) in our pipeline. As our projects evolve, we decided to simplify the whole process by combining the two steps into Upkit, making it even easier to use by adding the following features:\n\n* Single (YAML) file configuration, for dependency resolving, linking, etc.\n* Link anything with *Linkspec* ‐ determining how folders, files are linked to your Unity project.\n* Create distributable packages (with Linkspec).\n* Out-of-the-box support for Nuget and Git dependencies.\n\n## Getting Started\n\nThese instructions will use `upkit` to create a simple Unity3D project which depends on Newtonsoft.Json on Nuget Gallery.\n\nThe source code to this project can be also found under [`examples/simple-app`](https://github.com/finderseyes/upkit/tree/develop/examples/simple-app).\n\n### Prerequisites\n\n* Python 2.7 or above, with `pip`.\n* (optional) `nuget` for resolving Nuget dependencies.\n* (optional) `git` for resolving Git dependencies.\n\n### Installation\n\n```\n$ pip install upkit\n```\n\n### Step 1: Create Upkit project\nCreating a new Upkit project is as simple as:\n\n```\n$ upkit create-package simple-app\n```\n\n### Step 2: Edit Upkit config file `upkit.yaml`\nUpkit will create a new folder named `simple-app`, where you can find `upkit.yaml`. This file contains all the information Upkit needs in order to create your Unity project. Now, modify it to let Upkit know the project will depends on `NewtonSoft.Json`: \n\n```yaml\n# upkit.yaml\nparams:\n project: '{{__dir__}}/project'\n\nlinks:\n - target: '{{__assets__}}' \n source: '{{__dir__}}/assets'\n content: ['*']\n\n - target: '{{__plugins__}}'\n source: '{{__dir__}}/plugins'\n content: ['*']\n\n - target: '{{__project__}}/ProjectSettings'\n source: '{{__dir__}}/settings'\n\n - target: '{{__project__}}/Packages'\n source: '{{__dir__}}/packages'\n\n # Add project dependencies here: \n - source: 'nuget:Newtonsoft.Json@11.0.2#lib/net35'\n target: '{{__plugins__}}/Newtonsoft.Json'\n```\n\nNotice the second-last line where we instruct Upkit to resolve a Nuget library with `nuget:` scheme. Yes, it's that simple! \n\n### Step 3: Link to create Unity projects\nThe final step is to generate a Unity project, by calling: \n\n```\n$ cd simple-app \n$ upkit link \n```\nUpkit will take a few seconds to resolve project's dependencies and generate a Unity project under `simple-app/project`. Open the folder in Unity as a project and you are ready to go.\n\n## Documentation\n\nGo to [Project documentation](https://upkit.readthedocs.io/en/release-0.4.x/)\n\n## Authors\n\n* **Vu Le** - *Initial work* - [FindersEyes](https://github.com/finderseyes)\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details\n\n## Acknowledgments\n\n* This tool uses `xmltodict`, `pyyaml`, `yamlordereddictloader`, and `jinja2` under the hood. Thanks to the respected authors for the hard work.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/finderseyes/upkit", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "upkit", "package_url": "https://pypi.org/project/upkit/", "platform": "", "project_url": "https://pypi.org/project/upkit/", "project_urls": { "Homepage": "https://github.com/finderseyes/upkit" }, "release_url": "https://pypi.org/project/upkit/0.4.2/", "requires_dist": [ "pyyaml", "xmltodict", "yamlordereddictloader", "jinja2", "gitpython" ], "requires_python": "", "summary": "Project and package manager for Unity3D", "version": "0.4.2" }, "last_serial": 4417726, "releases": { "0.3.3": [ { "comment_text": "", "digests": { "md5": "953184883fa8acbc42ef0b65103ff77a", "sha256": "b81d2779b66f19c479b681c64a387a96787477fa1df4f77b435fdd6b8d332923" }, "downloads": -1, "filename": "upkit-0.3.3-py2-none-any.whl", "has_sig": false, "md5_digest": "953184883fa8acbc42ef0b65103ff77a", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 12747, "upload_time": "2018-10-20T08:49:34", "url": "https://files.pythonhosted.org/packages/7a/ab/37635fff2587ce8cb0187ac273143104b1f3e4a0e22e36892688574450f4/upkit-0.3.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b21efb6083cfde400451404a1349ed54", "sha256": "2d974013c25e8ca319ff1b7a1d3d1cc2e0cc01da4f4e8af32834c1096a234db2" }, "downloads": -1, "filename": "upkit-0.3.3.tar.gz", "has_sig": false, "md5_digest": "b21efb6083cfde400451404a1349ed54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13129, "upload_time": "2018-10-20T08:49:36", "url": "https://files.pythonhosted.org/packages/14/59/94164728b332246747d366b655be4c5e5970af0e71b713e93517b3b511ec/upkit-0.3.3.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "6d74943b18c62b0a4158c0929f3d7f1c", "sha256": "9f92b5692f5f90b59e532ce01cddf4dcd045f39c88abc7c643cf34310e2f2709" }, "downloads": -1, "filename": "upkit-0.4.1-py2-none-any.whl", "has_sig": false, "md5_digest": "6d74943b18c62b0a4158c0929f3d7f1c", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 16130, "upload_time": "2018-10-25T04:20:01", "url": "https://files.pythonhosted.org/packages/f5/37/f6ed0dd5b8ef693defcdc85bdc6ac89d2c745e1d3b61b8398c23b2275263/upkit-0.4.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2c52a6e7c0afcdbe41f85c62d30a3f8b", "sha256": "2aa6732c6b1d6305ce90030eb8dc50d4ba0e9d77a7f667c7cf7f69364c33e780" }, "downloads": -1, "filename": "upkit-0.4.1.tar.gz", "has_sig": false, "md5_digest": "2c52a6e7c0afcdbe41f85c62d30a3f8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15840, "upload_time": "2018-10-25T04:20:03", "url": "https://files.pythonhosted.org/packages/5e/28/fb058965f2e2132297c7e58dd85fc10bd2f2394f6d3cbcd1557876506a48/upkit-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "5a85f9fcb1bd8be0c0745a465cfe4660", "sha256": "909e5871bf4feb91609452ab80b7b088fcd7298ea85002397523004c68db8323" }, "downloads": -1, "filename": "upkit-0.4.2-py2-none-any.whl", "has_sig": false, "md5_digest": "5a85f9fcb1bd8be0c0745a465cfe4660", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 16258, "upload_time": "2018-10-26T03:39:01", "url": "https://files.pythonhosted.org/packages/f0/e2/e1e818e984a507ebdce0625a4f9d813d337cdc6c1812b6b2e028dbfb716a/upkit-0.4.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a31add34028e3893517d9b3236c6a826", "sha256": "d3ed4753b38b634f54f377d059ca997975d074e516272eb9cd45cc2ed39d2dc7" }, "downloads": -1, "filename": "upkit-0.4.2.tar.gz", "has_sig": false, "md5_digest": "a31add34028e3893517d9b3236c6a826", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16055, "upload_time": "2018-10-26T03:39:04", "url": "https://files.pythonhosted.org/packages/0c/c4/8e53d08472ddea29b8a27db598a7e42807e84b1f975413beb2b7387ed183/upkit-0.4.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5a85f9fcb1bd8be0c0745a465cfe4660", "sha256": "909e5871bf4feb91609452ab80b7b088fcd7298ea85002397523004c68db8323" }, "downloads": -1, "filename": "upkit-0.4.2-py2-none-any.whl", "has_sig": false, "md5_digest": "5a85f9fcb1bd8be0c0745a465cfe4660", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 16258, "upload_time": "2018-10-26T03:39:01", "url": "https://files.pythonhosted.org/packages/f0/e2/e1e818e984a507ebdce0625a4f9d813d337cdc6c1812b6b2e028dbfb716a/upkit-0.4.2-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a31add34028e3893517d9b3236c6a826", "sha256": "d3ed4753b38b634f54f377d059ca997975d074e516272eb9cd45cc2ed39d2dc7" }, "downloads": -1, "filename": "upkit-0.4.2.tar.gz", "has_sig": false, "md5_digest": "a31add34028e3893517d9b3236c6a826", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16055, "upload_time": "2018-10-26T03:39:04", "url": "https://files.pythonhosted.org/packages/0c/c4/8e53d08472ddea29b8a27db598a7e42807e84b1f975413beb2b7387ed183/upkit-0.4.2.tar.gz" } ] }