-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 852 Bytes
/
setup.py
File metadata and controls
35 lines (32 loc) · 852 Bytes
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
from setuptools import setup, find_packages
import json
import os
from glob import glob
# with open(os.path.dirname(os.path.abspath(__file__))+'/package.json') as f:
# pkg_info = json.load(f)
pkg_info={
'name': 'jupnode',
'version':'',
'description':'',
'homepage':'',
'author':'',
'email':'',
'license':'',
}
setup(name=pkg_info['name'],
version=pkg_info['version'],
description=pkg_info['description'],
url=pkg_info['homepage'],
install_requires=['wheel'],
setup_requires=['wheel'],
package_data={
'': ['*.js','*.json']
},
author=pkg_info['author'],
author_email=pkg_info['email'],
license=pkg_info['license'],
packages=['jupnode', 'src'],
package_dir={
'jupnode': 'src',
},
include_package_data=False)