chrissimpkins / crypto

Simple symmetric GPG file encryption and decryption
http://chrissimpkins.github.io/crypto
MIT License
48 stars 27 forks source link

v1.4.0 #5

Closed chrissimpkins closed 9 years ago

chrissimpkins commented 9 years ago

Source

chrisidefix commented 9 years ago

I think it's worth mentioning that the dependencies inside setup.py may also have to be updated, but I am not too familiar with what exactly should go in there - would the "tarfile" package need to be referenced?

chrissimpkins commented 9 years ago

Python builtin's don't need to be referenced in the setup.py file. Only external (i.e. non-Python builtin) dependencies. For instance if you are using a package/library from PyPI in your project, you would include the name of the package in the install_requires field (https://github.com/chrissimpkins/crypto/blob/master/setup.py#L47). This definition is formatted as a Python list. I am installing the application in a virtual env and testing with updates to the source so we will pick up on dependency issues before it is released. Worry about it only to the degree that it will make you a better developer to understand your install/deployment files. It's going to be solid before we release to users. That falls well within my bounds as the project maintainer.

Keep hammering away at your code! Looks great.

chrisidefix commented 9 years ago

pull requests for the source additions are in place. Feel free to have a look at them, whenever you get around to it. I also implemented a --passcode input option and will write a quick feature request for that one, in case you also want to include that into v1.4.0.

chrissimpkins commented 9 years ago

released