summaryrefslogtreecommitdiff
path: root/setup.py
blob: 5af473244014dcdb084d289752d3e93bf65774ba (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 python3
from setuptools import setup, find_packages

setup(name='emailcanary',
      version='0.2',
      author='Jesse Morgan',
      author_email='jesse@jesterpm.net',
      url='https://jesterpm.net',
      download_url='http://www.my_program.org/files/',
      description='Email Canary sends emails to a distribution list and checks for proper distribution.',
      long_description='',

      packages = find_packages(),
      include_package_data = True,
      exclude_package_data = { '': ['README.txt'] },

      scripts = ['bin/emailcanary'],

      license='MIT',

      #setup_requires = ['python-stdeb', 'fakeroot', 'python-all'],
      install_requires = ['setuptools'],
     )