File: setup.py

package info (click to toggle)
django-macaddress 1.8.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 164 kB
  • sloc: python: 213; makefile: 4
file content (39 lines) | stat: -rw-r--r-- 1,335 bytes parent folder | download | duplicates (2)
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
import os
from setuptools import setup, find_packages

version = "1.8.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.5',
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: 3.7',
        'Programming Language :: Python :: 3.8',
        'Topic :: Internet :: WWW/HTTP',
    ]
)