File tree 3 files changed +33
-10
lines changed
3 files changed +33
-10
lines changed Original file line number Diff line number Diff line change 1
- * .swatches
2
- .idea
3
- ** /published
4
- * .mb
5
1
* .egg-info
6
2
dist
7
3
* .pyc
8
- cover
9
- .coverage
10
- docs /_ **
11
4
build
Original file line number Diff line number Diff line change
1
+ language : python
2
+ python :
3
+ - 2.7
4
+ install :
5
+ script :
6
+ - pip install git+git://github.com/abstractfactory/pyblish.git
7
+ after_success :
8
+ - coveralls
9
+ deploy :
10
+ provider : pypi
11
+ user : mottosso
12
+ password :
13
+ secure : F7vWBoIB1JbC9b9wtvVmcAgcJwt8MTjjw9d/QcdVQalEKt0296LGbJckBr5djm9wiTr7u2EY8H8PQvaVSD9TjJ2u/XfO6oINmkd/lOklZ3Yvc6A6BkgVSrxZnYvKeGO/rd9/unziAYTP1xi9tYN9FHchjkOIUpc1DuSqZf8cV9s=
14
+ on :
15
+ tags : true
Original file line number Diff line number Diff line change
1
+ import os
1
2
from setuptools import setup , find_packages
2
3
3
4
classifiers = [
11
12
]
12
13
13
14
15
+ package_data = dict ()
16
+
17
+ package_data ['PyQt5' ] = list ()
18
+ for subdir in ("plugins/" , "qml/" , "uic/" ):
19
+ abspath = os .path .abspath ("PyQt5/" + subdir )
20
+ for root , dirs , files in os .walk (abspath ):
21
+ for f in files :
22
+ fpath = os .path .join (root , f )
23
+ relpath = os .path .relpath (fpath , abspath )
24
+ relpath = relpath .replace ("\\ " , "/" )
25
+ package_data ['PyQt5' ].append (subdir + relpath )
26
+
27
+ package_data ['PyQt5' ].extend (["*.exe" , "*.dll" , "*.pyd" ])
28
+
14
29
setup (
15
30
name = 'pypiqt5' , # To avoid name-clash with existing PyQt5
16
- version = "5.3.2 " ,
17
- description = 'quality assurance for content ' ,
31
+ version = "0.1.0 " ,
32
+ description = 'PyQt5 ' ,
18
33
long_description = "pypiqt5" ,
19
34
author = 'Marcus Ottosson' ,
20
35
23
38
packages = find_packages (),
24
39
zip_safe = False ,
25
40
classifiers = classifiers ,
26
- package_data = {},
41
+ package_data = package_data
27
42
)
You can’t perform that action at this time.
0 commit comments