-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0478399
commit d49c24c
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
], | ||
}, | ||
) |