forked from pogodevorg/pgoapi
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix installation from source dist, bump version
Don't require requirements.txt to install.
- Loading branch information
Showing
1 changed file
with
8 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,21 @@ | ||
#!/usr/bin/env python | ||
|
||
import os | ||
from setuptools import setup, find_packages | ||
from pip.req import parse_requirements | ||
|
||
setup_dir = os.path.dirname(os.path.realpath(__file__)) | ||
path_req = os.path.join(setup_dir, 'requirements.txt') | ||
install_reqs = parse_requirements(path_req, session=False) | ||
|
||
reqs = [str(ir.req) for ir in install_reqs] | ||
|
||
setup(name='aiopogo', | ||
author = 'David Christenson', | ||
author_email='[email protected]', | ||
description = 'Asynchronous Pokemon API lib', | ||
version = '1.2.1', | ||
version = '1.3.0', | ||
url = 'https://github.com/Noctem/aiopogo', | ||
packages = find_packages(), | ||
install_requires = reqs, | ||
install_requires = [ | ||
'protobuf>=3.0.0', | ||
'gpsoauth>=0.4.0', | ||
'protobuf3-to-dict>=0.1.4', | ||
'aiohttp==1.3.*', | ||
'pycrypt>=0.1.1', | ||
'pogeo>=0.2.0'], | ||
package_data={'aiopogo': ['lib/*.so', 'lib/*.dylib', 'lib/*.dll']}, | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
|