summaryrefslogtreecommitdiff
path: root/setup.py
blob: fbc1a8429a1daf8ca35722a95933409af065e98f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
from setuptools import setup, find_packages

setup(name='emailcanary',
      version='0.1',
      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.',

      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'],
     )