Esri / hermes

Collection of Metadata Utilities to read/write data to different format.
Apache License 2.0
14 stars 4 forks source link

Adding setup.py and extracting __version__ #2

Closed adamkerz closed 8 years ago

adamkerz commented 8 years ago

classifiers, author and author_email at the least need to be looked at.

version is put into its own file so that setup.py can read it without having to import the package, reduces overheads and sometimes all of the dependencies of the package aren't available at build time. Basically makes life simpler.

achapkowski commented 8 years ago

@adamkerz - Thank you!