-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (38 loc) · 1.13 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
from setuptools import setup
import os.path
from rss import __version__
with open(os.path.join(os.path.dirname(__file__), "README.rst")) as readme:
long_description = readme.read()
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
install_requires = [
]
setup(
name="rss",
version=__version__,
packages=["rss"],
author="Julian Berman",
author_email="[email protected]",
classifiers=classifiers,
description="RSS, Simply Syndicated",
license="MIT/X",
long_description=long_description,
url="http://github.com/Julian/rss",
dependency_links=[
"https://github.com/Julian/treq/tarball/fix-version#egg=treq-dev",
],
install_requires=[
"feedparser",
"twisted >= 11.0.0",
"termcolor >= 1.1.0",
"treq",
]
)