-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (30 loc) · 1.02 KB
/
setup.py
File metadata and controls
executable file
·33 lines (30 loc) · 1.02 KB
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
from setuptools import setup
setup(
name="devpi-rss",
version="1.0.9",
description="A plug-in for devpi-server which generates RSS feeds for indices.",
long_description=open("README.rst").read() + '\n\n' + open("HISTORY.rst").read(),
author="k-bu",
author_email="k-bu@email.com",
url="https://github.com/k-bu/devpi-rss",
license="MIT",
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
"devpi-server>=2.2.2",
"devpi-web>=2.4.0",
"PyRSS2Gen",
],
packages=["devpi_rss"],
zip_safe=False,
include_package_data=True,
entry_points={"devpi_server": ["devpi-rss=devpi_rss"]},
)