-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (46 loc) · 1.43 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
LONG_DESCRIPTION = """
Twitter bot based on libturpial that reads RSS feeds and tweet them on
configured accounts.
"""
data_files=[
('./', ['README', 'COPYING']),
]
setup(name="twitrss",
version='0.9',
description="RSS Twitter bot",
long_description=LONG_DESCRIPTION,
author="Wil Alvarez",
author_email="[email protected]",
maintainer="Wil Alvarez",
maintainer_email="[email protected]",
url="http://github.com/arepadev/twitrss",
download_url="http://github.com/arepadev/twitrss",
license="GPLv3",
keywords='twitter identi.ca microblogging rss bot',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.5",
"Topic :: Communications",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules"
],
entry_points={
'console_scripts': [
'twitrss = twitrss:TwitRss',
],
},
packages=find_packages(),
data_files=data_files,
)