-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (43 loc) · 1.14 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
45
46
47
48
#!/usr/bin/env python3
import json
from setuptools import setup
def get_version():
package_json = json.load(open("package.json"))
return package_json["version"]
setup(
name="dc_design_system",
version=get_version(),
description="SCSS and images for the DC design system",
author="Sym Roe",
author_email="[email protected]",
packages=[
"dc_design_system",
"dc_design_system/system",
"dc_design_system/static/scss/fonts",
"dc_design_system/static/images",
],
package_dir={
"dc_design_system": "python-package",
"dc_design_system/system": "system",
"dc_design_system/static/scss/fonts": "system/fonts",
"dc_design_system/static/images": "system/images",
},
package_data={
"dc_design_system/system": [
"*",
"**/*",
],
"dc_design_system/static/scss/fonts": [
"*",
"**/*",
],
"dc_design_system/static/images": [
"*",
"**/*",
],
"dc_design_system": [
"*.py",
],
},
setup_requires=["wheel"],
)