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