forked from git-multimail/git-multimail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#! /usr/bin/env python2
import sys
import os
from setuptools import setup
assert 0x02040000 <= sys.hexversion < 0x03000000, \
"Install Python 2, version 2.4 or greater"
def read_readme():
return open(os.path.join('git-multimail', 'README')).read()
setup(
name='git-multimail',
version='1.0.0',
description='Send notification emails for Git pushes',
long_description=read_readme(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Communications :: Email',
'Topic :: Software Development :: Version Control',
],
keywords='git hook email',
url='https://github.com/git-multimail/git-multimail',
author='Michael Haggerty',
author_email='[email protected]',
maintainer='Michael Haggerty',
maintainer_email='[email protected]',
license='GPLv2',
package_dir={'': 'git-multimail'},
py_modules=['git_multimail'],
)