-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
45 lines (33 loc) · 1 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
41
42
43
44
45
from setuptools import setup, find_packages
version = '1.0'
tests_require = [
'unittest2',
'mocker',
'nose',
]
setup(name='github-watchlist',
version=version,
description='Manage your watched GitHub repositories per script',
long_description=open('README.rst').read(),
classifiers=[
'Intended Audience :: Developers',
],
keywords='github watchlist',
author='Jonas Baumann',
url='https://github.com/jone/github-watchlist',
license='Beerware',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
install_requires=[
'argparse',
'requests',
'setuptools',
],
tests_require=tests_require,
extras_require={'tests': tests_require},
entry_points = {
'console_scripts' : [
'initialize = watchlist.initialize:initialize_command',
'update-watchlist = watchlist.command:update_command',
]})