diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..bb3ec5f --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include README.md diff --git a/__init__.py b/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..aad3765 --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +import os +from setuptools import setup + +this_dir = os.path.dirname(__file__) +long_description = "\n" + open(os.path.join(this_dir, 'README.md')).read() + +setup( + name='teamcity_rest_client', + version='0.0.0', + description='TeamCity Python REST api client', + long_description=long_description, + url='https://github.com/yotamoron/teamcity-python-rest-client', + author='Yotam Oron', + author_email='yotamoron@yahoo.com', + py_modules=['teamcityrestapiclient'], + zip_safe=False, + install_requires=[], + license='MIT', + classifiers=[ + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Natural Language :: English', + 'Intended Audience :: Developers', + ], +) diff --git a/tc.py b/teamcityrestapiclient.py similarity index 100% rename from tc.py rename to teamcityrestapiclient.py