-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
44 lines (42 loc) · 1.42 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
import re
versionPattern = re.compile(r"""^__version__ = ['"](.*?)['"]$""", re.M)
with open("vertex/_version.py", "rt") as f:
version = versionPattern.search(f.read()).group(1)
setup(
name="Vertex",
version=version,
maintainer="Twisted Matrix Laboratories",
maintainer_email="vertex-dev@twistedmatrix.com",
url="https://github.com/twisted/vertex",
scripts=["bin/gvertex", "bin/vertex"],
install_requires=[
'attrs',
'Twisted[tls]>=16.6.0',
'automat',
'pretend',
'txscrypt',
],
license="MIT",
platforms=["any"],
description=
"""
Divmod Vertex is the first implementation of the Q2Q protocol, which
is a peer-to-peer communication protocol for establishing
stream-based communication between named endpoints.
""",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Framework :: Twisted",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Communications",
"Topic :: Internet",
"Topic :: Internet :: File Transfer Protocol (FTP)",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages() + ['prime.plugins'],
include_package_data=True,
)