-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
44 lines (38 loc) · 1.15 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
44
#!/usr/bin/env python
#-*- coding:utf-8 -*-
#############################################
# File Name: setup.py
# Author: EyreFree
# Mail: eyrefree@eyrefree.org
# Created Time: 2019-02-05 15:01:34 PM
#############################################
from setuptools import setup, find_packages
setup(
name = "efpodsanalyzer",
version = "0.2.6",
keywords = ("pip", "eyrefree", "cocoapods", "analyzer", "efpodsanalyzer"),
description = "CocoaPods dependency analysis tool",
long_description = "CocoaPods dependency analysis tool",
license = "GPLv3 Licence",
url = "https://github.com/EyreFree/EFPodsAnalyzer",
author = "EyreFree",
author_email = "eyrefree@eyrefree.org",
packages = find_packages(),
#include_package_data = True,
package_data={
'efpodsanalyzer': [
'EFPADiagram/*.html',
'EFPADiagram/js/*',
'EFPADiagram/css/*',
'template/*',
'EFPAConfig.json'
]
},
platforms = "any",
install_requires = [],
entry_points={
'console_scripts':[
'efpodsanalyzer = efpodsanalyzer.efpodsanalyzer:main'
]
}
)