forked from lvillani/carthage-copy-frameworks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (36 loc) · 1.21 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from codecs import open as open_f
from os import path
from setuptools import setup
HERE = path.abspath(path.dirname(__file__))
try:
with open_f(path.join(HERE, "DESCRIPTION.rst"), encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
except IOError:
LONG_DESCRIPTION = ""
setup(
name="carthage-copy-frameworks",
version="1.2.0",
description="carthage-copy-frameworks is an helper script that automatically copies every framework below Carthage/Build/iOS",
long_description=LONG_DESCRIPTION,
url="https://github.com/lvillani/carthage-copy-frameworks",
author="Lorenzo Villani",
author_email="[email protected]",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Build Tools",
],
keywords="apple build carthage helper ios",
packages=["ccp"],
entry_points={
"console_scripts": [
"carthage-copy-frameworks=ccp:main",
],
},
)