Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.md
Empty file removed __init__.py
Empty file.
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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',
],
)
File renamed without changes.