-
Notifications
You must be signed in to change notification settings - Fork 73
/
setup.py
44 lines (41 loc) · 1.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import os
from io import open
from setuptools import setup
DIST_NAME = 'Pikaptcha'
VERSION = 'v0.1'
AUTHOR = 'sriyegna'
EMAIL = '[email protected]'
GITHUB_USER = 'sriyegna'
GITHUB_URL = 'https://github.com/{GITHUB_USER}/{DIST_NAME}'.format(**locals())
# Get the long description from the README file
setup_dir = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(setup_dir, 'README.md'), encoding='utf-8') as readme:
long_description = readme.read()
setup(
name=DIST_NAME,
packages=['pikaptcha'],
version=VERSION,
description='Pokemon Go Bulk Account Creator.',
author=AUTHOR,
author_email=EMAIL,
url=GITHUB_URL,
license='GPL v3',
download_url='{GITHUB_URL}/tarball/{VERSION}'.format(**locals()),
keywords='',
install_requires=[
'requests[security]==2.10.0',
'six==1.10.0',
'selenium==2.53.6'
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
entry_points={
'console_scripts': [
'pikaptcha = pikaptcha.console:entry',
],
}
)