-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 945 Bytes
/
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
import setuptools
setuptools.setup(
name="paka.feedgenerator",
version="1.5.0",
packages=setuptools.find_packages(),
install_requires=["six", "pytz"],
extras_require={"testing": []},
include_package_data=True,
namespace_packages=["paka"],
zip_safe=False,
url="https://github.com/PavloKapyshin/paka.feedgenerator",
keywords="rss atom feed",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"],
license="BSD",
author="Pavlo Kapyshin",
author_email="i@93z.org")