-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 844 Bytes
/
setup.py
File metadata and controls
32 lines (27 loc) · 844 Bytes
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
from distutils.core import setup
LONG_DESCRIPTION = """
ATOM to RSS2
Released under MIT Licence.
"""
setup(
name='atomtorss2',
version='1.1',
packages=['atomtorss2'],
url='https://github.com/flrt/atom_to_rss2',
license='MIT',
keywords="Atom,feed,XML",
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Communications',
'Topic :: Software Development :: Libraries :: Python Modules',
],
author='Frederic Laurent',
author_email='frederic.laurent@gmail.com',
description='Atom to rss2 converter',
long_description=LONG_DESCRIPTION
)