File: setup.py

package info (click to toggle)
django-macaddress 1.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 156 kB
  • sloc: python: 203; makefile: 7
file content (43 lines) | stat: -rw-r--r-- 1,377 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
import os

from setuptools import setup

version = "1.9.0"


def read(fname):
    return open(os.path.join(os.path.dirname(__file__), fname)).read()


setup(
    name="django-macaddress",
    version=version,
    url="http://github.com/tubaman/django-macaddress",
    license="BSD",
    description="MAC address model and form fields for Django apps.",
    long_description=read("README.rst"),
    author="Ryan Nowakowski",
    author_email="tubaman@fattuba.com",
    maintainer="Arun Karunagath",
    maintainer_email="the1.arun@gmail.com",
    packages=["macaddress", "macaddress.tests"],
    install_requires=["netaddr"],
    tests_require=["Django"],
    test_suite="runtests.runtests",
    classifiers=[
        "Development Status :: 5 - Production/Stable",
        "Framework :: Django",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: BSD License",
        "Operating System :: OS Independent",
        "Programming Language :: Python",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3 :: Only",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
        "Programming Language :: Python :: 3.12",
        "Programming Language :: Python :: 3.13",
        "Topic :: Internet :: WWW/HTTP",
    ],
)