-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (39 loc) · 1.15 KB
/
setup.py
File metadata and controls
44 lines (39 loc) · 1.15 KB
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
# -*- coding: utf-8 -*-
__author__ = 'jayin'
from setuptools import setup, find_packages
requirements = []
with open('requirements.txt') as f:
requirements = f.readlines()
with open('README.md') as f:
long_description = f.read()
setup(
name='google.py',
version='0.1.1',
description='Search available fast google ip for blocked users',
long_description=long_description,
url='https://github.com/Jayin/core.py',
download_url='https://github.com/Jayin/google.py',
author='Jayin Ton',
author_email='tonjayin@gmail.com',
license='BSD',
packages=find_packages(),
include_package_data = True,
package_data={
'google': ['data/ips.json'],
},
entry_points={
'console_scripts': [
'google = google.core:main',
],
},
install_requires=requirements,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Utilities'
],
)