-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (34 loc) · 1.18 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
#!/usr/bin/env/ python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name = 'GitMon',
version = '0.3.5',
packages = find_packages('lib'),
package_dir = {'' : 'lib'},
scripts = ['misc/gitmon'],
zip_safe = False,
package_data = {'': ['*.png', '*.example']},
requires = ('gitpython (>=0.2.9)', 'py_Growl_2_6 (>=0.0.7)'),
install_requires = ['gitpython >= 0.2.9', 'py_Growl_2_6 >= 0.0.7'],
#Metadata for PyPI
url = 'http://github.com/spajus/gitmon/',
author = 'Tomas Varaneckas',
author_email = '[email protected]',
description = 'GitMon - The Git Repository Monitor',
long_description = 'GitMon - The Git Repository Monitor',
license = 'GPLv3',
keywords = ['git', 'monitor', 'scm', 'repository'],
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: MacOS X',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
]
)