-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Package it onto the PyPi #12
Comments
I've already had that idea, but failed at creating a package with all the necessary files. It's easy for On second thought, I'm not sure whether PyPI is a good place for a programming language. Compilers are usually installed in some other ways. Also, it's only an implementation detail that Pyxell is written in Python. I'm already thinking about rewriting it to C++ to make parsing faster and make it possible to implement an interpreter in a fairly easy way. |
Have you seen the MANIFEST.in file? That's where you can include other files, too.
Pip is pre-installed on almost every system. I almost cry when packages say "get this from homebrew" because my HomeBrew barely works. Pip is the easiest way. Or conda. |
Yeah, I tried it, and something still didn't work. It seems to be a strange problem for many people, see e.g. https://stackoverflow.com/questions/1612733/including-non-python-files-with-setup-py. I just gave up after trying several approaches.
Maybe I'll have better luck with conda. It also fits better, since it's language-agnostic. However, Pyxell can be easily downloaded from Github releases and run from source. It's the same way I've recently downloaded Kotlin. |
Package it with a setup.py and everything so we can install it on PyPi
The text was updated successfully, but these errors were encountered: