-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 801 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(version='0.9.0',
name='allmychanges',
description='A command line client to AllMyChanges.com.',
license='BSD',
keywords='changelog tracker allmychanges release notes',
url='https://github.com/svetlyak40wt/allmychanges',
author='Artemenko Alexander',
author_email='svetlyak.40wt@gmail.com',
packages=find_packages(),
entry_points={
'console_scripts': [
'amch = allmychanges.client:main']},
install_requires=['click>=2.2,<3.0',
'conditions>=0.1.0,<0.2.0',
'tablib>=0.10.0,<0.11.0',
'ptable>=0.9.2,<0.10.0',
'requests>=2.3.0,<3.0.0',
'six==1.9.0'])