File: setup.py

package info (click to toggle)
python-http-ece 1.2.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 124 kB
  • sloc: python: 740; makefile: 8; sh: 5
file content (44 lines) | stat: -rwxr-xr-x 1,336 bytes parent folder | download
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
#!/usr/bin/python
import io
import os

from setuptools import setup

here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, "README.rst"), encoding="utf8") as f:
    README = f.read()

setup(
    name="http_ece",
    version="1.2.1",
    author="Martin Thomson",
    author_email="martin.thomson@gmail.com",
    scripts=[],
    packages=["http_ece"],
    description="Encrypted Content Encoding for HTTP",
    long_description="Encipher HTTP Messages",
    classifiers=[
        "Development Status :: 4 - Beta",
        "License :: OSI Approved :: MIT License",
        "Programming Language :: Python :: 2.7",
        "Programming Language :: Python :: 3.4",
        "Programming Language :: Python :: 3.5",
        "Programming Language :: Python :: 3.6",
        "Programming Language :: Python :: 3.7",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
        "Programming Language :: Python :: 3.12",
    ],
    keywords="crypto http",
    install_requires=[
        "cryptography>=2.5",
    ],
    tests_require=[
        "pytest",
        "pytest-cov",
    ],
    url="https://github.com/martinthomson/encrypted-content-encoding",
    license="MIT",
)