-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py.bc4d43a15726dde0ae1be748c656face.py
69 lines (65 loc) · 1.97 KB
/
setup.py.bc4d43a15726dde0ae1be748c656face.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from setuptools import find_packages, setup
import system.__about__ as version
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name=version.__package_name__,
version=version.__version__,
author=version.__author__,
author_email=version.__email__,
url=version.__url__,
license=version.__license__,
description=version.__description__,
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Environment :: Console',
# Indicate who your project is intended for
'Intended Audience :: End Users/Desktop',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
# Pick your license as you wish
'License :: OSI Approved :: MIT License',
],
keywords='ai virtual assitant',
packages=find_packages(),
include_package_data=True,
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*.conf', '*.json', '*.txt', '.learnt', '.trained'],
},
python_requires='>=3.5',
install_requires=[
'beautifulsoup4',
'fuzzywuzzy',
'google',
'lxml',
'online-judge-api-client',
'online-judge-tools',
'plyer',
'pyfiglet',
'requests',
'tcgen',
'termcolor',
'tqdm',
'wget',
'wikipedia-api',
'wolframalpha',
],
entry_points={
'console_scripts': [
'ai = run.run:start',
'jarvis = run.run:start',
'Cp = run.cp_run:cp_start',
'CP = run.cp_run:cp_start',
],
},
)