-
Notifications
You must be signed in to change notification settings - Fork 64
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
Add setup.py and requirements.txt #10
Comments
From what I've seen around, the requirements.txt is quite straightforward, although I still wonder: how can you determine what's the earliest version of a package that is required? As for the setup.py, I've never done one myself and it seems complex, I could use some guidance with that. |
@HGSilveri if it's ok with you I'm going to open a PR with a barebones |
Alright, that sounds good. I'll use the same branch to include the requirements.txt (without versions for now) if that's ok with you. |
I'll put a requirements.txt in the PR as well, but feel free to edit it if you like! |
Even better, thanks! |
These are essential for any Python project. They describe how to package and install the project, and how to set up a development environment for it in a repeatable way. As such, they are pre-requisites for implementing continuous integration.
The text was updated successfully, but these errors were encountered: