summaryrefslogtreecommitdiff
path: root/setup.py
blob: 8cf5f300bc31cecf73d83f9ac1676150a33fb7a5 (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.3',
      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'],
     )