File: setup.py

package info (click to toggle)
python-indexed 1.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 112 kB
  • sloc: python: 141; makefile: 3
file content (34 lines) | stat: -rwxr-xr-x 1,017 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
#!/usr/bin/env python

import os
import setuptools


def read(filename):
    with open(os.path.join(os.path.dirname(__file__), filename)) as f:
        return f.read()


setuptools.setup(
    name="indexed",
    version="1.3.0",
    author="Niklas Fiekas",
    author_email="niklas.fiekas@backscattering.de",
    description="A dictionary that is indexed by insertion order.",
    long_description=read("README.rst"),
    long_description_content_type="text/x-rst",
    license="PSFL",
    url="http://github.com/niklasf/indexed.py",
    packages=["indexed"],
    test_suite="test",
    python_required=">=3.7",
    classifiers=[
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: Python Software Foundation License",
        "Operating System :: OS Independent",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Topic :: Software Development :: Libraries :: Python Modules",
    ],
)