summaryrefslogtreecommitdiffstats
path: root/py/setup.py
blob: ef143c42a21b03006eef9d1eb4ba95a1bdbb6201 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from distutils.core import setup
from nftables import NFTABLES_VERSION

setup(name='nftables',
      version=NFTABLES_VERSION,
      description='Libnftables binding',
      author='Netfilter project',
      author_email='coreteam@netfilter.org',
      url='https://netfilter.org/projects/nftables/index.html',
      packages=['nftables'],
      provides=['nftables'],
      package_dir={'nftables':'.'},
      classifiers=[
          'Development Status :: 4 - Beta',
          'Environment :: Console',
          'Intended Audience :: Developers',
          'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
          'Operating System :: POSIX :: Linux',
          'Programming Language :: Python',
          'Topic :: System :: Networking :: Firewalls',
          ],
      )