Skip to content

Commit

Permalink
Bump to 2.1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Serchinastico committed Nov 19, 2024
1 parent 0478399 commit d49c24c
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
import sys
from codecs import open
from os import path

from setuptools import find_packages, setup

if sys.version_info.major < 3:
raise RuntimeError('Please use python3 to install this package')

here = path.abspath(path.dirname(__file__))

with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='kin',
version='2.1.12',
description='A simple project.pbxproj verifier',
long_description=long_description,
url='https://github.com/Serchinastico/Kin',
author='Serchinastico',
author_email='[email protected]',
license='Apache Software',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
],

keywords='xcode project.pbxproj lint objective-c swift ios',
packages=find_packages(exclude=['tests']),
install_requires=[
'argparse==1.4.0',
'antlr4-python3-runtime==4.13.1'
],
entry_points={
'console_scripts': [
'kin = kin.kin:main',
],
},
)

0 comments on commit d49c24c

Please sign in to comment.