diff --git a/setup.py b/setup.py index 412595b7..052630e7 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,10 @@ import codecs -import os -import sys -from setuptools import setup +from setuptools import setup -SCHEDULE_VERSION = '1.0.3' +SCHEDULE_VERSION = '1.1.0' SCHEDULE_DOWNLOAD_URL = ( - 'https://github.com/Cubewise-code/TM1py/tarball/' + SCHEDULE_VERSION + 'https://github.com/Cubewise-code/TM1py/tarball/' + SCHEDULE_VERSION ) @@ -17,6 +15,7 @@ def read_file(filename): with codecs.open(filename, 'r', 'utf8') as f: return f.read() + setup( name='TM1py', packages=['TM1py', 'TM1py/Exceptions', 'TM1py/Objects', 'TM1py/Services', 'TM1py/Utils'],