-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
33 lines (28 loc) · 880 Bytes
/
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
import re
from setuptools import setup
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('cocoapodsgraph/executor.py').read(),
re.M
).group(1)
with open("README.md", "rb") as f:
long_descr = f.read().decode("utf-8")
setup(
name = "cocoapods-graph",
packages = ["cocoapodsgraph"],
entry_points = {
"console_scripts": ['cocoapods-graph = cocoapodsgraph.executor:main']
},
version = version,
author="Erick Jung",
author_email="[email protected]",
description="Cocoapods dependencies graph generator",
long_description = long_descr,
long_description_content_type='text/markdown',
url="https://github.com/erickjung/cocoapods-graph",
classifiers=(
"Programming Language :: Python :: 2",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
),
)