aboutsummaryrefslogblamecommitdiffstats
path: root/setup.py
blob: aa19e66be1bc915c8975032190ead2acd231b93c (plain) (tree)
1
2
3
4
5
6
7
8
                  
                       

                                   

                            
 
 


                                                                      
 
                  



                                                             
                                      
                                         

                                                    
                        





                                        
                        
                      



                                                  
                                                       
                               
                                                   

                                               
                                                                            

       
#!/usr/bin/python3
# -*- coding: utf-8 -*-

from mail2news import VERSION, DESC
import os.path
from setuptools import setup


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


setup(name='pygn',
      version=VERSION,  # the current Debian version is 0.9.8
      author="Cosimo Alfarano, Matej Cepl",
      author_email="kalfa@debian.org, mcepl@cepl.eu",
      description=DESC,
      long_description=read('README'),
      url='https://gitlab.com/mcepl/pyg',
      py_modules=['mail2news', 'news2mail', 'setup',
                  'whitelist', 'wlp', 'wlp_parser'],
      test_suite="test",
      entry_points={
          "console_scripts": [
              "pygm2n = mail2news:main",
              "pygn2m = news2mail:main"
          ]
      },
      requires=['rply'],
      license="GPLv3",
      keywords=["nntp", "email", "gateway"],
      classifiers=[
          'Development Status :: 3 - Alpha',
          'Programming Language :: Python :: 2.7',
          'Intended Audience :: System Administrators',
          'Topic :: Utilities',
          'Topic :: Communications :: Usenet News',
          'Environment :: Console',
          'Operating System :: OS Independent',
          'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
      ]
      )