-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (18 loc) · 756 Bytes
/
setup.py
File metadata and controls
21 lines (18 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from distutils.core import setup
import sys
sys.path.insert(0, "atomize")
import atomize
setup(name="atomize",
version="%s.%s.%s" % atomize.__version__,
author="Christopher Wienberg, John Garland",
author_email="cwienberg@ict.usc.edu, johnnybg@gmail.com",
url="https://github.com/johnnyg/atomize",
download_url="https://github.com/johnnyg/atomize/downloads",
description="A simple Python package for easily generating Atom feeds",
long_description="A pure-Python package for easily generating Atom Syndicated Format feeds.",
package_dir={"": "atomize"},
py_modules=["atomize"],
provides=["atomize"],
keywords="atom web",
license="Eclipse Public License 1.0")