-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 878 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (29 loc) · 878 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
#!/usr/bin/env python
import os
import codecs
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
VERSION = "0.2.0"
URL = "https://github.com/tinybike/pyvpnc"
DOWNLOAD_URL = (URL + "/tarball/" + VERSION)
HERE = os.path.dirname(os.path.realpath(__file__))
with codecs.open(os.path.join(HERE, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="vpnc",
version=VERSION,
description="Cisco VPN connector",
long_description=long_description,
long_description_content_type="text/x-rst",
author="Jack Peterson",
author_email="<jack@tinybike.net>",
maintainer="Jack Peterson",
maintainer_email="<jack@tinybike.net>",
license="MIT",
url=URL,
download_url=DOWNLOAD_URL,
packages=["vpnc"],
keywords = ["vpnc", "vpn", "network", "Cisco", "concentrator"]
)