setup.py
changeset 53 499857f9f756
parent 50 721ade1bdc6e
child 58 678779e9508a
equal deleted inserted replaced
52:6d8e4d38f94d 53:499857f9f756
    11 #
    11 #
    12 
    12 
    13 """
    13 """
    14 This module contains pyams_notify package
    14 This module contains pyams_notify package
    15 """
    15 """
       
    16 
    16 import os
    17 import os
    17 from setuptools import setup, find_packages
    18 from setuptools import setup, find_packages
    18 
    19 
    19 DOCS = os.path.join(os.path.dirname(__file__),
    20 DOCS = os.path.join(os.path.dirname(__file__),
    20                     'docs')
    21                     'docs')
    21 
    22 
    22 README = os.path.join(DOCS, 'README.txt')
    23 README = os.path.join(DOCS, 'README.txt')
    23 HISTORY = os.path.join(DOCS, 'HISTORY.txt')
    24 HISTORY = os.path.join(DOCS, 'HISTORY.txt')
    24 
    25 
    25 version = '0.1.8.3'
    26 version = '0.1.9'
    26 long_description = open(README).read() + '\n\n' + open(HISTORY).read()
    27 long_description = open(README).read() + '\n\n' + open(HISTORY).read()
    27 
    28 
    28 tests_require = []
    29 tests_require = []
    29 
    30 
    30 setup(name='pyams_notify',
    31 setup(name='pyams_notify',