This repository has been archived by the owner on Jul 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
46 lines (45 loc) · 1.67 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
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
if __name__ == '__main__':
setup(
name = 'wisp',
version="0.0.8-beta",
description = 'A preference based location finder app',
author = 'Jimut Bahan Pal',
author_email = '[email protected]',
maintainer = 'Jimut Bahan Pal',
maintainer_email = '[email protected]',
url = '',
license = 'GPLv2+',
platforms = 'Linux',
py_modules = ['wisp'],
entry_points = {
'console_scripts': ['wisp = wisp:main'],
},
include_package_data = True,
install_requires = [
'requests',
'datetime',
'IPython',
'pandas',
'folium',
'geopy',
'numpy',
'wget',
'pip'
],
keywords = 'Preference, location, wisp, requests, html, json, numpy, pandas, software, tkinter, folium, geopy, lat lon, wget, Ipython, location cluster, KNN, Machine learning, clustering',
classifiers = [
'Development Status :: 0.0.8 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: Manjaro',
'Programming Language :: Python :: 3.7.2',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search'
],
)