forked from pogodevorg/pgoapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (18 loc) · 673 Bytes
/
setup.py
File metadata and controls
22 lines (18 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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='pgoapi',
author = 'tjado',
description = 'Pokemon Go API lib',
version = '1.1.6',
url = 'https://github.com/tejado/pgoapi',
download_url = "https://github.com/tejado/pgoapi/releases",
packages = find_packages(),
install_requires = reqs,
package_data={'pgoapi': ['lib/*']}
)