-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (44 loc) · 1.42 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
45
46
47
48
49
50
51
"""
logcc
-------------
This is the description for that library
"""
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='netboy',
version='2018.07.03',
url='https://github.com/pingf/netboy2.git',
license='BSD',
author='Jesse MENG',
author_email='[email protected]',
description='the boy for net',
long_description=read('README.rst'),
py_modules=['netboy'],
# if you would be using a package instead use packages instead
# of py_modules:
packages=['netboy', 'netboy.multi_pycurl', 'netboy.celery', 'netboy.remote', 'netboy.selenium_chrome',
'netboy.support', 'netboy.util', 'netboy.base', 'netboy.aio_http'],
zip_safe=False,
package_data={
# 'bin': ['bin/chromedriver'],
},
include_package_data=True,
platforms='any',
install_requires=[
'termcc', 'loader', 'aiohttp', 'aiofiles', 'websockets', 'pony', 'terminaltables', 'logcc', 'celery',
'inquirer', 'selenium', 'pycurl', 'worker', 'wrap', 'redis'
],
data_files=[
('bin', ['bin/chromedriver']),
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)