-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
43 lines (37 loc) · 1.19 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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.10',
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',
],
},
)