tejado / pgoapi

Pokemon Go API lib
Other
1.4k stars 445 forks source link

added setup.py #40

Closed Chlodochar closed 8 years ago

Chlodochar commented 8 years ago

with setup.py it's possible for other projects to refer to this one. For example it's possible to have an requirements.txt with:

-e git://github.com/tejado/pgoapi.git@9c11277#egg=pgoapi

after that it can be used:

from pgoapi import PGoApi

hopefully that'll bring some sanity to copying .proto and _pb2.py files to all the pgo repos.

Also, it'll make a start with versioning. this sets the version to 1.0, so it might be an idea to tag it 1.0 as well.

tejado commented 8 years ago

Great, thanks!