This repository was archived by the owner on Aug 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (43 loc) · 1.37 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (43 loc) · 1.37 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
from setuptools import setup
from twitter_monitor.common import version
import os
# Compile a list of packages available
packages = []
for dirpath, dirnames, filenames in os.walk("twitter_monitor"):
if "__pycache__" in dirpath:
continue
packages.append(dirpath.replace("/", "."))
packages = set(packages)
long_description = ""
try:
with file("docs/about.rst") as f:
long_description = f.read()
except Exception as e:
pass
setup(
name="TwitterMonitor",
version=version,
author="Alisson R. Perez",
author_email="alissonperez@gmail.com",
url="https://github.com/alissonperez/TwitterMonitor",
packages=packages,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.3",
"Development Status :: 3 - Alpha",
"Operating System :: MacOS",
"Operating System :: Unix",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Monitoring",
"Topic :: Utilities",
],
install_requires=[
"tweepy>=2.3",
],
description="Small library to create monitoring routines with Twitter DM. (Python >= 3.3)",
long_description=long_description
)