forked from sriyegna/Pikaptcha
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
39 lines (36 loc) · 1.11 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
from pathlib import Path
from setuptools import setup
DIST_NAME = 'MonoGen'
VERSION = '0.3.4'
AUTHOR = 'David Christenson'
EMAIL = '[email protected]'
GITHUB_USER = 'Noctem'
GITHUB_URL = 'https://github.com/{}/{}'.format(GITHUB_USER, DIST_NAME)
setup(
name=DIST_NAME,
packages=['monogen'],
version=VERSION,
description='Bulk PTC account creator.',
long_description='MonoGen creates PTC accounts by creating a chrome session and automatically entering data in the required fields.',
author=AUTHOR,
author_email=EMAIL,
url=GITHUB_URL,
license='GPL v3',
download_url='{}/releases'.format(GITHUB_URL),
install_requires=[
'requests[security]>=2.10.0',
'selenium>=2.53.6',
'selenium-requests'
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
entry_points={
'console_scripts': [
'monogen = monogen.console:entry',
],
}
)