-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
28 lines (27 loc) · 821 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="tweebot",
version="1.0",
description="Python library to build twitter bots",
license="MIT",
author="Maxim Kamenkov",
author_email="[email protected]",
url="http://github.com/caxap/tweebot",
packages=find_packages(),
install_requires=[
'tweepy'
],
keywords=["twitter", "bot", "library", "api"],
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
]
)