-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (30 loc) · 1.05 KB
/
setup.py
File metadata and controls
executable file
·34 lines (30 loc) · 1.05 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
#! /usr/bin/env python
import os
from setuptools import setup
if __name__ == "__main__":
here = os.path.abspath(".")
README = open(os.path.join(here, 'README.rst')).read()
setup(
name="devpi",
description="devpi: github-style pypi index server and packaging meta tool.",
install_requires = ["devpi-server>=1.2,<1.3",
"devpi-client>=1.2,<1.3"],
keywords="pypi cache server installer wsgi",
long_description=README,
url="http://doc.devpi.net",
version='1.2',
maintainer="Holger Krekel",
maintainer_email="holger@merlinux.eu",
zip_safe=False,
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
)