-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
55 lines (48 loc) · 1.82 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
52
53
54
55
from setuptools import setup, find_packages
with open('README.md', 'r') as infile:
long_descr = infile.read()
setup(name="bwf",
version='0.0.2',
description='Bing Website Finder (bwf) adds websites to a list of company names from the commandline.',
long_description=long_descr,
url='https://please.buythingsfrom.us',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
'Environment :: Console',
'Framework :: AsyncIO',
'Natural Language :: English',
'Natural Language :: Esperanto',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: Name Service (DNS)',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Internet :: WWW/HTTP :: Site Management :: Link Checking',
],
author='Robert Truxal',
author_email='[email protected]',
license='MIT-like (see LICENCE file)',
packages=find_packages(),
include_package_data=True,
# package_dir={
# 'bing_website_finder' : 'bing_website_finder',
# 'io' : 'bing_website_finder/io',
# },
package_data={'data' : ['data/*.sql', 'data/*.csv']},
# data_files=[('schema', ['io/schema.sql'])],
entry_points={
'console_scripts' : [
'bwf = bing_website_finder.__main__:main',
'bing_website_finder = bing_website_finder.__main__:main',
]
},
zipsafe=False,
python_requires='>=3.7.0',
install_requires= [
'aiohttp',
'pandas'
],
)