-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 738 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
from newsblur import __version__
long_description = open('README.rst').read()
setup(name='newsblur',
version=__version__,
py_modules=['newsblur'],
description='API Wrapper library for newsblur.com',
author='Dananjaya Ramanayake',
author_email='dananjaya86@gmail.com',
license='MIT',
url='',
long_description=long_description,
platforms=['any'],
classifiers=['Development Status :: 1 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: News/RSS',
],
)