-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·33 lines (29 loc) · 958 Bytes
/
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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='ppp_twitter_bot',
version='0.1',
description='Twitter bot that uses the PPP to answer mentions',
url='https://github.com/ProgVal/TwitterPlatypus',
author='Valentin Lorentz',
author_email='[email protected]',
license='MIT',
classifiers=[
'Environment :: No Input/Output (Daemon)',
'Development Status :: 1 - Planning',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
install_requires=[
'ppp_datamodel>=0.6.3,<0.7',
'tweepy==3.1',
],
packages=[
'ppp_twitter_bot',
],
)