-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathsetup.py
More file actions
90 lines (81 loc) · 2.7 KB
/
setup.py
File metadata and controls
90 lines (81 loc) · 2.7 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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
version = None
with open(path.join(here, 'version.txt'), encoding='utf-8') as f:
version = f.read()
version = version.strip()
print("Building PyPi Package for version %s"%version)
if version is None:
print("No version.txt found")
long_description = ""
with open(path.join(here, path.join(here, 'README.md')), encoding='utf-8') as f:
long_description = f.read()
download_url = "https://github.com/keiffster/program-y/%s.tar.gz"%version
setup(
name = 'programy',
packages=find_packages(),
package_data={'': ['*.conf', '*.aiml']},
include_package_data=True,
version = version,
description = 'AIML Framework and Platform',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'Keith Sterling',
author_email = 'keiffster@gmail.com',
url = 'https://github.com/keiffster/program-y.git',
download_url = download_url,
keywords = ['aiml', 'chatbot', 'virtual assistant', 'ai'],
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 5 - Production/Stable',
# Indicate who your project is intended for
'Intended Audience :: Developers',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
install_requires=[
'python-dateutil==2.8.1',
'wget==3.2',
'beautifulsoup4==4.8',
'lxml==4.9.1',
'PyYAML==5.4',
'requests==2.22.0',
'Flask==2.2.5',
'Flask-SocketIO==4.2.1',
'tweepy==3.8.0',
'sleekxmpp==1.3.3',
'python-telegram-bot==12.0.0',
'pymessenger==0.0.7.0',
'twilio==6.35.1',
'slackclient==1.3.1',
'viberbot==1.0.11',
'line-bot-sdk==1.15.0',
'kik==1.5.0',
'discord.py==1.2.3',
'botbuilder-core==4.5.0b4',
'botbuilder-schema>=4.5.0b4',
'wikipedia==1.4.0',
'MetOffer==1.3.2',
'APScheduler==3.6.3',
'emoji==0.5.4',
'autocorrect==0.4.4',
'textblob==0.15.3',
'redis==4.4.4',
'pymongo==3.10.0',
'SQLAlchemy==1.3.12',
'PyMySQL==0.9.3'
]
)