-
Notifications
You must be signed in to change notification settings - Fork 264
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (45 loc) · 1.21 KB
/
setup.py
File metadata and controls
49 lines (45 loc) · 1.21 KB
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
49
import json
import setuptools
kwargs = json.loads("""
{
"name": "scope.jsii-calc-base-of-base",
"version": "0.20.2",
"description": "An example transitive dependency for jsii-calc.",
"license": "Apache-2.0",
"url": "https://github.com/aws/jsii",
"long_description_content_type": "text/markdown",
"author": "Amazon Web Services",
"project_urls": {
"Source": "https://github.com/aws/jsii.git"
},
"package_dir": {
"": "src"
},
"packages": [
"scope.jsii_calc_base_of_base",
"scope.jsii_calc_base_of_base._jsii"
],
"package_data": {
"scope.jsii_calc_base_of_base._jsii": [
"jsii-calc-base-of-base@0.20.2.jsii.tgz"
],
"scope.jsii_calc_base_of_base": [
"py.typed"
]
},
"python_requires": ">=3.6",
"install_requires": [
"jsii~=0.20.2,<0.21.0",
"publication>=0.0.3"
],
"classifiers": [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved"
]
}
""")
with open('README.md') as fp:
kwargs['long_description'] = fp.read()
setuptools.setup(**kwargs)